use clap::Parser; #[derive(Debug, Parser)] pub struct Config { #[arg(long, env)] pub database: String, #[arg(long, env)] pub port: u16, }