aboutsummaryrefslogtreecommitdiff
path: root/common/src/jhls.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-12 13:54:04 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-12 13:54:04 +0200
commite99bde7a00a161ff5dd91eaf1ce546a9d98cef05 (patch)
tree454c2de6fae85720064b35593158e612b2d9fefb /common/src/jhls.rs
parent356b3b8eebf22083c7d9655bb43e141dd0df732c (diff)
downloadjellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar
jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar.bz2
jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar.zst
move stream types to own crate; removes a common dep
Diffstat (limited to 'common/src/jhls.rs')
-rw-r--r--common/src/jhls.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/common/src/jhls.rs b/common/src/jhls.rs
index 90f48f5..104d9a5 100644
--- a/common/src/jhls.rs
+++ b/common/src/jhls.rs
@@ -3,12 +3,3 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
-use bincode::{Decode, Encode};
-use serde::{Deserialize, Serialize};
-
-#[derive(Debug, Serialize, Deserialize, Encode, Decode)]
-pub struct SubtitleCue {
- pub start: f64,
- pub end: f64,
- pub content: String,
-}