chore: extract ffow into multiple files (#173)

* chore: extract ffow into multiple files

* fix: serde uses not being conditional
This commit is contained in:
CosminPerRam 2023-12-19 22:04:45 +01:00 committed by GitHub
parent bdcf64facf
commit 10169c9107
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 66 additions and 55 deletions

View file

@ -0,0 +1,8 @@
/// The implementation.
/// Reference: [Node-GameGig](https://github.com/gamedig/node-gamedig/blob/master/protocols/ffow.js)
pub mod protocol;
/// All types used by the implementation.
pub mod types;
pub use protocol::*;
pub use types::*;