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