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

This commit is contained in:
2025-04-01 00:04:22 +02:00
parent 05cde266a5
commit 4bf70337d1
5 changed files with 611 additions and 361 deletions

View File

@ -1,5 +1,5 @@
use actix_web::middleware::Logger;
use actix_web::{get, post, web, App, HttpResponse, HttpServer, Responder};
use actix_web::{App, HttpResponse, HttpServer, Responder, get, post, web};
use clap::Parser;
use env_logger::Env;
@ -45,3 +45,13 @@ async fn main() -> std::io::Result<()> {
.run()
.await
}
#[cfg(test)]
mod test {
use crate::Args;
#[test]
fn verify_cli() {
use clap::CommandFactory;
Args::command().debug_assert()
}
}