playit-agent-core 0.20.1

Contains the logic to create a playit.gg agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate core;

pub mod agent_control;
pub mod network;
pub mod utils;
pub mod playit_agent;

pub const PROTOCOL_VERSION: u64 = 2;

#[cfg(test)]
mod test {
    #[test]
    fn test() {
    }
}