exocore_apps_sdk/lib.rs
1#[macro_use]
2extern crate lazy_static;
3#[macro_use]
4extern crate log;
5
6pub(crate) mod binding;
7pub(crate) mod logging;
8
9pub mod app;
10pub mod client;
11pub mod executor;
12pub mod store;
13pub mod time;
14
15pub use exocore_apps_macros::exocore_app;
16
17pub mod prelude {
18 pub use super::{
19 app::{App, AppError},
20 client::Exocore,
21 executor::spawn,
22 exocore_app,
23 store::{Store, StoreError},
24 time::{now, sleep, Timestamp},
25 };
26}