1pub mod airsim; 2pub mod car; 3pub mod controller; 4pub mod errors; 5mod msgpack; 6 7#[macro_use] 8extern crate async_trait; 9 10#[cfg(test)] 11mod tests { 12 #[test] 13 fn it_works() { 14 assert_eq!(2 + 2, 4); 15 } 16}