1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![feature(try_from, never_type)]

extern crate airmash_protocol as protocol_common;

#[macro_use]
mod macros;

mod client;
mod server;

mod error;
mod funcs;
mod protocol;
mod serde;

pub use error::*;
pub use protocol::ProtocolV5;