gamedig/services/
mod.rs

1//! Services that are currently implemented.
2
3/// Reference: [Master Server Query Protocol](https://developer.valvesoftware.com/wiki/Master_Server_Query_Protocol)
4pub mod valve_master_server;
5
6/// Reference: [Node-GameDig](https://github.com/gamedig/node-gamedig/blob/master/protocols/minetest.js)
7#[cfg(all(feature = "serde", feature = "tls"))]
8pub mod minetest_master_server;