1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// TODO: Do we really want this? It's very vendor lockin vibe. #[derive(clap::Args)] #[command(about = "TODO")] pub struct Command {} impl Command { pub async fn run(&self) { // let config = Config::load().await; // let config: Config = serde_yaml::from_str(s) // TODO: Loading `.env`, etc. // TODO: Allow running Lambda functions // TODO: Redirect rules, static files, etc todo!(); } }