diff options
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index b583823..6634143 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -10,10 +10,11 @@ use anyhow::Context; use database::Database; use jellybase::{federation::Federation, CONF, SECRETS}; +use jellylogic::admin::log::enable_logging; use log::{error, info, warn}; use routes::build_rocket; use tokio::fs::create_dir_all; -use ui::{account::hash_password, admin::log::enable_logging}; +use ui::account::hash_password; pub use jellybase::database; pub mod api; |