diff options
Diffstat (limited to 'common/src/lib.rs')
-rw-r--r-- | common/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs index 6403469..a7e1c3f 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -6,10 +6,10 @@ pub mod config; pub mod helpers; pub mod r#impl; +pub mod jhls; pub mod seek_index; pub mod stream; pub mod user; -pub mod jhls; #[cfg(feature = "rocket")] use rocket::{FromFormField, UriDisplayQuery}; @@ -56,7 +56,7 @@ pub struct RemoteImportOptions { #[serde(default)] pub prefix: Option<String>, } -#[derive(Debug, Clone, Deserialize, Serialize)] +#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)] #[serde(rename_all = "snake_case")] pub enum AssetLocation { Cache(PathBuf), |