This commit is contained in:
JMARyA 2024-05-10 11:59:05 +02:00
parent 985296d366
commit 9d5ec6d1b3
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
4 changed files with 135 additions and 7 deletions

View file

@ -42,6 +42,7 @@ async fn main() -> std::io::Result<()> {
.service(routes::item::supply_route)
.service(routes::item::item_variants_page)
.service(routes::item::get_items_route)
.service(routes::item::demand_route)
})
.bind(("0.0.0.0".to_string(), 8080))?
.run()