This commit is contained in:
JMARyA 2024-04-29 16:05:09 +02:00
parent 21adfaee13
commit d913772f3b
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
4 changed files with 51 additions and 35 deletions

View file

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