This commit is contained in:
JMARyA 2024-08-27 23:33:09 +02:00
parent 0be7fff77d
commit 74b07a0ea3
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
8 changed files with 107 additions and 10 deletions

View file

@ -3,6 +3,7 @@ use rocket::{http::Method, launch};
mod db;
mod item;
mod process;
mod routes;
mod transaction;
mod variant;
@ -51,7 +52,8 @@ async fn rocket() -> _ {
routes::item::supply_route,
routes::item::demand_route,
routes::item::transaction_route,
routes::item::inventory_route
routes::item::inventory_route,
routes::item::variant_stat_route
],
)
.manage(itemdb)