0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 14:08:23 -05:00

Compare commits

...

2 Commits

Author SHA1 Message Date
neon_arch
ca0412beab
Merge 7d9291449e into 8d9b660eb1 2024-03-07 13:32:38 +00:00
neon_arch
7d9291449e
🚨 fix(build): make the cargo build check happy (#486) 2024-03-07 16:32:36 +03:00

View File

@ -12,7 +12,7 @@ async fn spawn_app() -> String {
let port = listener.local_addr().unwrap().port();
let config = CONFIG.get_or_init(|| Config::parse(false).unwrap());
let cache = websurfx::cache::cacher::create_cache(config).await;
let server = run(listener, config, cache).expect("Failed to bind address");
let server = run(listener, &config, cache).expect("Failed to bind address");
tokio::spawn(server);
format!("http://127.0.0.1:{}/", port)