Changed backend port

This commit is contained in:
Patrick Alvin Alcala 2025-09-04 19:01:50 +08:00
parent 35120067fa
commit bc4d813eff

View file

@ -27,7 +27,7 @@ async fn main() -> std::io::Result<()> {
.app_data(Data::new(app_state.pool.clone())) .app_data(Data::new(app_state.pool.clone()))
.service(sample) .service(sample)
}) })
.bind(("127.0.0.1", 8080))? .bind(("127.0.0.1", 4320))?
.run() .run()
.await .await
} }