fight unuseds, sessions endpoint

This commit is contained in:
2026-02-24 01:42:19 +01:00
parent ee7ed48144
commit 1e7866a293
11 changed files with 59 additions and 13 deletions

View File

@@ -36,7 +36,6 @@ async fn main() -> Result<(), Box<dyn Error>> {
let r = api::api_router();
let l = TcpListener::bind(format!("0.0.0.0:{port}")).await?;
println!("Listener bound to {}", l.local_addr()?);
let port = l.local_addr()?.port();
axum::serve(l, r).await?;
Ok(())