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