fix: Set tokio runtime to current_thread to fix !Send errors

Co-authored-by: aider (gemini/gemini-2.5-pro-preview-05-06) <aider@aider.chat>
This commit is contained in:
Chaos Rogers 2025-07-21 16:48:09 +01:00
parent 8ad553aaee
commit 0325c3b570
2 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ fn ensure_config() {
}
}
#[tokio::main]
#[tokio::main(flavor = "current_thread")]
async fn main() {
// 🔄 Ensure there's always a config.json present
ensure_config();