1#![allow(non_local_definitions)] use abi_stable::{rstr, std_types::RStr};
4
5pub mod authentication;
6pub mod background;
7pub mod error_code;
8pub mod internal;
9pub mod interplay;
10pub mod log;
11pub mod metrics;
12pub mod plugin;
13pub mod sql;
14pub mod system;
15pub mod transport;
16pub mod util;
17
18#[no_mangle]
19pub static PICOPLUGIN_VERSION: RStr<'static> = rstr!(env!("CARGO_PKG_VERSION"));
20
21#[cfg(all(feature = "internal_test", not(test)))]
30mod test_macros {
31 use super::system::tarantool;
32
33 #[tarantool::test]
34 fn test() {}
35
36 #[tarantool::proc]
37 fn example() {}
38}