diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-16 12:00:54 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-16 12:00:54 +0100 |
commit | 42a81f199793d7d8a07c848d5956436564caf593 (patch) | |
tree | 84bac0b70f6a39a6ef7160d28e00992f95e5c578 /common/src/lib.rs | |
parent | 9f9449ddd58eb07d20e14e7a75c7387c9cc17ebe (diff) | |
download | jellything-42a81f199793d7d8a07c848d5956436564caf593.tar jellything-42a81f199793d7d8a07c848d5956436564caf593.tar.bz2 jellything-42a81f199793d7d8a07c848d5956436564caf593.tar.zst |
move importer over to jellyremux
Diffstat (limited to 'common/src/lib.rs')
-rw-r--r-- | common/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs index d5fc3fc..a75f599 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -11,6 +11,7 @@ pub struct DirectoryInfo { #[derive(Debug, Clone, Deserialize, Serialize)] pub struct ItemInfo { pub title: String, + pub duration: f64, // in seconds pub tracks: BTreeMap<u64, SourceTrack>, } |