server: fix port

This commit is contained in:
k
2024-07-20 23:18:49 +02:00
parent 6eb4b51168
commit 5611459f03
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ async fn main() -> color_eyre::Result<()> {
.with_state(state)
.layer(compression_layer);
let port = 3111;
let port = 3110;
log(&format!("Starting server on port {port}..."));