1 |
#![allow(improper_ctypes_definitions)]
|
2 |
|
3 |
pub mod future;
|
4 |
pub mod local;
|
5 |
pub use giterated_abi as abi;
|
6 |
|
7 |
#[macro_use]
|
8 |
extern crate tracing;
|
9 |
|
10 |
pub mod plugin {
|
11 |
pub use giterated_macros::plugin_init as init;
|
12 |
}
|
13 |
|
14 |
pub use giterated_macros::plugin;
|
15 |
|