feat: initial http and eco support

This commit is contained in:
CosminPerRam 2024-01-02 01:43:36 +02:00
parent bd3727d7fe
commit 285bd7fe6e
8 changed files with 263 additions and 0 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::*;