12 lines
223 B
Rust
12 lines
223 B
Rust
pub mod all_net;
|
|
pub mod auth_lite;
|
|
pub mod title;
|
|
|
|
mod error;
|
|
pub use error::ApiError;
|
|
|
|
pub use bincode;
|
|
|
|
#[cfg(all(feature = "compio", feature = "tokio"))]
|
|
compile_error!("you must not enable both `compio` and `tokio`");
|