♻️ refactor
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2025-04-16 04:27:45 +02:00
parent 443b52bf38
commit 91d39a4d83
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
7 changed files with 29 additions and 7 deletions

View file

@ -7,15 +7,16 @@ use rocket::{http::Method, launch};
use tokio::sync::OnceCell;
mod config;
mod core;
mod db;
mod flow;
mod integrity;
mod item;
mod json_store;
mod location;
pub use core::flow;
pub use core::item;
pub use core::location;
pub use core::transaction;
pub use core::variant;
mod routes;
mod transaction;
mod variant;
pub static PG: OnceCell<sqlx::PgPool> = OnceCell::const_new();