diff options
Diffstat (limited to 'server/src/database.rs')
-rw-r--r-- | server/src/database.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/src/database.rs b/server/src/database.rs index 3773ad1..ac20347 100644 --- a/server/src/database.rs +++ b/server/src/database.rs @@ -1,5 +1,3 @@ -use std::path::Path; - /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. @@ -8,6 +6,7 @@ use std::path::Path; use anyhow::Context; use log::info; use serde::{Deserialize, Serialize}; +use std::path::Path; use typed_sled::Tree; pub struct Database { |