-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1886 from oasisprotocol/kostko/feature/rofl-app-p…
…relude runtime-sdk/modules/rofl: Add prelude for ROFL applications
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ use crate::{ | |
mod client; | ||
mod env; | ||
mod notifier; | ||
pub mod prelude; | ||
mod processor; | ||
mod registration; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//! Prelude for ROFL applications. | ||
pub use std::sync::Arc; | ||
|
||
pub use anyhow::Result; | ||
pub use async_trait::async_trait; | ||
|
||
pub use crate::{self as sdk, core::consensus::verifier::TrustRoot, Version}; | ||
|
||
pub use super::{App, AppId, Environment}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters