#![allow(unused_imports, unused_variables, reason = "Not implemented yet.")]
use crate::Config;
use anyhow::{Context, Result};
use argh::FromArgs;
#[derive(FromArgs, PartialEq, Eq, Debug)]
#[argh(subcommand, name = "serve", help_triggers("-h", "--help"))]
pub struct Serve {
}
impl Serve {
#[allow(clippy::unused_async, reason = "Not implemented yet")]
pub async fn execute(&self, config: Config) -> Result<()> {
Ok(())
}
}