pub(crate) mod mashin_core_client;
mod state;
const VERSION: &str = env!("CARGO_PKG_VERSION");
const AUTHORS: &str = env!("CARGO_PKG_AUTHORS");
#[allow(unused)]
fn about() {
println!("\n");
println!("Atmosphere. Distributed Runtime.");
println!("Authors: {AUTHORS}");
version();
println!("\n");
}
fn version() {
println!("Version: {VERSION}");
}