scotch_host/lib.rs
1#![cfg_attr(feature = "unstable-doc-cfg", feature(doc_cfg))]
2pub(crate) type PrefixType = u16;
3
4mod encoded;
5pub use encoded::*;
6
7mod managed;
8pub use managed::*;
9
10mod plugin;
11pub use plugin::*;
12
13mod export;
14pub use export::*;
15
16mod error;
17pub use error::*;
18
19pub use scotch_host_macros::*;