title is now also part of the whole process

This commit is contained in:
2026-03-03 12:58:45 +01:00
parent cf67c980a2
commit 37b8fe5e56
7 changed files with 64 additions and 17 deletions

View File

@@ -55,7 +55,7 @@ async fn app_state() -> AppState {
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let app_state = app_state().await;
app_state.scheduler.start();
app_state.scheduler.start().await;
start_axum_server(app_state).await;
Ok(())