aboutsummaryrefslogtreecommitdiff
path: root/base/src/assetfed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'base/src/assetfed.rs')
-rw-r--r--base/src/assetfed.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/base/src/assetfed.rs b/base/src/assetfed.rs
index 697cacb..621169f 100644
--- a/base/src/assetfed.rs
+++ b/base/src/assetfed.rs
@@ -1,4 +1,9 @@
-use crate::{cache::CachePath, SECRETS};
+/*
+ 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.
+ Copyright (C) 2025 metamuffin <metamuffin.org>
+*/
+use crate::SECRETS;
use aes_gcm_siv::{
aead::{generic_array::GenericArray, Aead},
Aes256GcmSiv, KeyInit,
@@ -6,6 +11,7 @@ use aes_gcm_siv::{
use anyhow::{anyhow, bail, Context};
use base64::Engine;
use bincode::{Decode, Encode};
+use jellycache::CachePath;
use jellycommon::{Asset, LocalTrack};
use log::warn;
use serde::Serialize;