fix: update port to 3003

This commit is contained in:
Jet 2026-03-18 17:53:55 -07:00
parent 2e9b32a8fd
commit add50dc7af
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -48,8 +48,8 @@ pub async fn run() -> Result<(), Box<dyn std::error::Error>> {
.layer(CorsLayer::permissive())
.with_state(state);
let listener = tokio::net::TcpListener::bind("127.0.0.1:3001").await?;
println!("Listening on 127.0.0.1:3001");
let listener = tokio::net::TcpListener::bind("127.0.0.1:3003").await?;
println!("Listening on 127.0.0.1:3003");
axum::serve(listener, app).await?;
Ok(())
}