diff options
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index ced2f02..b583823 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -7,16 +7,22 @@ #![allow(clippy::needless_borrows_for_generic_args)] #![recursion_limit = "4096"] -use crate::routes::ui::{account::hash_password, admin::log::enable_logging}; use anyhow::Context; use database::Database; use jellybase::{federation::Federation, CONF, SECRETS}; use log::{error, info, warn}; use routes::build_rocket; use tokio::fs::create_dir_all; +use ui::{account::hash_password, admin::log::enable_logging}; pub use jellybase::database; +pub mod api; +pub mod compat; +pub mod helper; +pub mod locale; +pub mod logic; pub mod routes; +pub mod ui; #[rocket::main] async fn main() { |