Refresh repo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-31 16:58:10 +02:00
parent eb79c25dbc
commit c08dff96bf
5 changed files with 964 additions and 484 deletions

View File

@@ -115,4 +115,15 @@ async fn main() -> std::io::Result<()> {
.bind(args.listen_address)?
.run()
.await
}
}
#[cfg(test)]
mod test {
use crate::Args;
#[test]
fn verify_cli() {
use clap::CommandFactory;
Args::command().debug_assert()
}
}