Skip to main content

rokkett_logger/
lib.rs

1pub mod protocol;
2
3#[cfg(feature = "client")]
4pub mod client;
5#[cfg(feature = "client")]
6pub use client::RokkettLogger;
7
8#[cfg(all(feature = "server"))]
9pub mod server;