Write down some design notes

This commit is contained in:
Joscha 2023-08-03 23:06:05 +02:00
parent 8b0e6fe268
commit 12ec8ac217
2 changed files with 31 additions and 0 deletions

View file

@ -20,6 +20,7 @@ async fn run() -> anyhow::Result<()> {
}),
)
.fallback(get(r#static::static_handler));
// TODO Add text body to body-less status codes
axum::Server::bind(&"0.0.0.0:8000".parse().unwrap())
.serve(app.into_make_service())