This commit is contained in:
parent
443b52bf38
commit
91d39a4d83
7 changed files with 29 additions and 7 deletions
11
src/main.rs
11
src/main.rs
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue