diff options
Diffstat (limited to 'server/src/database.rs')
-rw-r--r-- | server/src/database.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/database.rs b/server/src/database.rs index 12a6564..be71c98 100644 --- a/server/src/database.rs +++ b/server/src/database.rs @@ -3,8 +3,9 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2023 metamuffin <metamuffin.org> */ -use crate::{routes::ui::account::hash_password, CONF}; +use crate::routes::ui::account::hash_password; use anyhow::Context; +use jellybase::CONF; use jellycommon::{Node, SeekIndex}; use log::info; use serde::{Deserialize, Serialize}; |