Trading card city builder game?

insignificant documentation updates

eldridge.cam 7fede6f6 bc9105e2

verified
+7 -1
+5
packages/cartography/src/main.rs
··· 12 12 use tracing_subscriber::prelude::*; 13 13 use utoipa::OpenApi as _; 14 14 15 + /// Cartography (city building trading card game) game server. 16 + /// 17 + /// Run with no arguments to run the server in standard mode. 15 18 #[derive(clap::Parser)] 19 + #[command(version)] 16 20 struct Args { 21 + /// Print the OpenAPI spec and exit, instead of running the server. 17 22 #[clap(long)] 18 23 openapi: bool, 19 24 }
+2 -1
packages/cartography/src/test.rs
··· 1 + //! Helpers for tests. 2 + 1 3 use std::any::Any; 2 - 3 4 use axum::{body::Body, http::Request}; 4 5 use http_body_util::BodyExt; 5 6 use kameo::prelude::*;