1 |
#![allow(improper_ctypes_definitions)]
|
2 |
|
3 |
pub mod domain;
|
4 |
pub mod future;
|
5 |
pub mod local;
|
6 |
|
7 |
#[doc(hidden)]
|
8 |
pub use giterated_abi as abi;
|
9 |
pub use giterated_abi::vtable::{operation::Operation, Object, Setting, Value};
|
10 |
|
11 |
pub use giterated_abi::operation::*;
|
12 |
pub use giterated_abi::state::StateExtractor;
|
13 |
pub use giterated_abi::state::{FromState, StateUUID};
|
14 |
pub use giterated_core::RuntimeState;
|
15 |
|
16 |
#[macro_use]
|
17 |
extern crate tracing;
|
18 |
|
19 |
pub mod plugin {
|
20 |
pub use giterated_macros::plugin_init as init;
|
21 |
}
|
22 |
|
23 |
pub use giterated_macros::plugin;
|
24 |
|