···1212use tracing_subscriber::prelude::*;
1313use utoipa::OpenApi as _;
14141515+/// Cartography (city building trading card game) game server.
1616+///
1717+/// Run with no arguments to run the server in standard mode.
1518#[derive(clap::Parser)]
1919+#[command(version)]
1620struct Args {
2121+ /// Print the OpenAPI spec and exit, instead of running the server.
1722 #[clap(long)]
1823 openapi: bool,
1924}