From 11a585b3dbe620dcc8772e713b22f1d9ba80d598 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sun, 27 Apr 2025 19:25:11 +0200 Subject: move files around --- server/src/main.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'server/src/main.rs') 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() { -- cgit v1.2.3-70-g09d2