playit_agent_core/
lib.rs

1extern crate core;
2
3pub mod agent_control;
4pub mod network;
5pub mod utils;
6pub mod playit_agent;
7
8pub const PROTOCOL_VERSION: u64 = 2;
9
10#[cfg(test)]
11mod test {
12    #[test]
13    fn test() {
14    }
15}