atlasserver 0.3.0

Atlas is a rust library for the purpose of composing REST APIs out of re-usable and extensible modules, specifically with supporting the networking needs of online gaming services in mind.
#![allow(clippy::all)]
#![allow(clippy::pedantic)]
#![allow(clippy::unwrap_used)]
#![allow(clippy::nursery)]
mod schema;

pub use ::protobuf::Message;
pub use schema::*;

include!(concat!(env!("OUT_DIR"), "/get_schema.rs"));