1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
mod acl;
mod admin;
mod base;
mod crypto;
mod default_app;
mod events;
mod ndn;
mod non;
mod prelude;
mod rmeta;
mod root_state;
mod router_handler;
mod stack;
mod storage;
mod sync;
mod trans;
mod util;
mod ws;
mod zone;
mod requestor;
pub use crate::util::*;
pub use acl::*;
pub use admin::*;
pub use base::*;
pub use crypto::*;
pub use default_app::*;
pub use events::*;
pub use ndn::*;
pub use non::*;
pub use prelude::*;
pub use rmeta::*;
pub use root_state::*;
pub use router_handler::*;
pub use stack::*;
pub use storage::*;
pub use sync::*;
pub use trans::*;
pub use ws::*;
pub use zone::*;
pub use requestor::*;
pub use cyfs_util::cache::*;
#[macro_use]
extern crate log;
pub fn register_core_objects_format() {
use crate::admin::*;
use cyfs_base::*;
FORMAT_FACTORY.register(cyfs_core::CoreObjectType::Admin, format_json::<AdminObject>);
}
cyfs_base::declare_module_perf_isolate!("cyfs-lib");
#[cfg(test)]
mod tests {
#[test]
fn main() {
}
}