inventory

This commit is contained in:
JMARyA 2024-08-13 04:13:38 +02:00
parent 72586df67f
commit 0be7fff77d
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 49 additions and 9 deletions

View file

@ -1,7 +1,6 @@
use rocket::routes as route;
use rocket::{http::Method, launch};
mod db;
mod item;
mod routes;
@ -51,7 +50,8 @@ async fn rocket() -> _ {
routes::item::demand_log_route,
routes::item::supply_route,
routes::item::demand_route,
routes::item::transaction_route
routes::item::transaction_route,
routes::item::inventory_route
],
)
.manage(itemdb)