This commit is contained in:
JMARyA 2024-09-21 17:16:24 +02:00
parent 30638bd80b
commit ad96e2938d
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
use mongod::{Model, Referencable};
use mongod::Model;
use crate::item::Item;

View file

@ -1,5 +1,3 @@
use std::{future::Future, pin::Pin};
use futures::FutureExt;
use mongod::{
derive::{Model, Referencable},

View file

@ -92,7 +92,8 @@ async fn rocket() -> _ {
routes::flow::create_flow_route,
routes::item::move_transaction_route,
routes::item::variant_price_latest_by_origin,
routes::item::item_stat_route
routes::item::item_stat_route,
routes::flow::active_flows_route
],
)
.manage(itemdb)