about summary refs log tree commit diff stats
path: root/src/lib.rs
blob: a0858b5bfaa1e23cf59ecaf9c244de9dac9b2a61 (plain) (blame)
1
2
3
4
5
6
7
8
9
pub mod service;
#[cfg(feature = "protocol")]
pub mod protocol;

// re-exports
pub use self::service::{Service, ServiceConf, ServiceState};
#[cfg(feature = "protocol")]
pub use self::protocol::SalarymanPacket;