ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/salaryman/trunk/src/lib.rs
Revision: 17
Committed: Fri Aug 1 08:48:17 2025 UTC (2 months, 1 week ago) by yuzu
File size: 211 byte(s)
Log Message:
unix socket get

File Contents

# Content
1 pub mod service;
2 #[cfg(feature = "protocol")]
3 pub mod protocol;
4
5 // re-exports
6 pub use self::service::{Service, ServiceConf, ServiceState};
7 #[cfg(feature = "protocol")]
8 pub use self::protocol::SalarymanPacket;
9