aboutsummaryrefslogtreecommitdiff
path: root/server/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main.rs')
-rw-r--r--server/src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/server/src/main.rs b/server/src/main.rs
index b180d79..335b960 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -14,7 +14,7 @@ use crate::{
use anyhow::{Result, anyhow};
use jellycache::Cache;
use jellycommon::{
- TAGREG, USER_ADMIN, USER_LOGIN, USER_PASSWORD,
+ USER_ADMIN, USER_LOGIN, USER_PASSWORD,
jellyobject::{ObjectBuffer, Path},
};
use jellydb::{Database, Filter, Query, Sort};
@@ -37,8 +37,6 @@ pub mod ui_responder;
#[rocket::main]
async fn main() {
setup_logger();
- jellydb::DEBUG_TAGREG.set(TAGREG.clone()).ok().unwrap();
-
let state = match create_state() {
Ok(s) => s,
Err(e) => {