1use abi_stable::{rstr, std_types::RStr};
2
3pub mod background;
4pub mod error_code;
5pub mod internal;
6pub mod interplay;
7pub mod log;
8pub mod metrics;
9pub mod plugin;
10pub mod sql;
11pub mod system;
12pub mod transport;
13pub mod util;
14
15#[no_mangle]
16pub static PICOPLUGIN_VERSION: RStr<'static> = rstr!(env!("CARGO_PKG_VERSION"));
17
18#[cfg(feature = "internal_test")]
19mod test_macros {
20 use super::system::tarantool;
21
22 #[tarantool::test]
23 fn test() {}
24
25 #[tarantool::proc]
26 fn example() {}
27}