JavaScript is disabled, refresh for a better experience. ambee/giterated

ambee/giterated

Git repository hosting, collaboration, and discovery for the Fediverse.

no clue what this is

Amber - ⁨1⁩ year ago

parent: tbd commit: ⁨7889bf6

⁨giterated-plugin/src/lib.rs⁩ - ⁨530⁩ bytes
Raw
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