diff options
author | yuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef> | 2025-08-01 08:48:17 +0000 |
---|---|---|
committer | yuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef> | 2025-08-01 08:48:17 +0000 |
commit | 2df86268298de8a4961c3296c19b0767565453e8 (patch) | |
tree | 1f048c96efaeb0959e04ad4273a149a108491361 /src/lib.rs | |
parent | 40a65f981a664a186a52fc2981b99a6d8a1191d4 (diff) | |
download | salaryman-canon.tar.gz salaryman-canon.tar.bz2 salaryman-canon.zip |
git-svn-id: svn+ssh://diminuette.aengel.lesbianunix.dev/salaryman/trunk@17 b9215c17-b818-4693-b096-d1e41a411fef
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs index 1f278a4..a0858b5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1 +1,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; + |