useclap::{Parser,Subcommand};#[derive(Parser)]pub(crate)structCliArgs{#[command(subcommand)]pub(crate)command:Command,}#[derive(Subcommand)]pub(crate)enumCommand{/// Serve the server on the default ports.Serve,/// Print the `OpenAPI` API documentation to stdout.OpenApi,}