Axum sqlx database

let options = SqliteConnectOptions::from_str(db_url)?
    .journal_mode(SqliteJournalMode::Wal);
let pool = SqlitePool::connect_with(options).await?;
let app = app().with_state(State(pool));