This commit is contained in:
JMARyA 2024-05-02 16:13:31 +02:00
parent d913772f3b
commit 6d43193959
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
7 changed files with 382 additions and 323 deletions

View file

@ -39,6 +39,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::add_variant_route)
})
.bind(("0.0.0.0".to_string(), 8080))?
.run()