diff options
Diffstat (limited to 'stream/src/hls.rs')
-rw-r--r-- | stream/src/hls.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/stream/src/hls.rs b/stream/src/hls.rs index c09b77f..dca1036 100644 --- a/stream/src/hls.rs +++ b/stream/src/hls.rs @@ -5,10 +5,12 @@ */ use anyhow::{anyhow, Result}; -use jellybase::CONF; -use jellycommon::{ - stream::{StreamFormat, StreamSpec}, - LocalTrack, Node, SourceTrackKind, +use jellybase::{ + common::{ + stream::{StreamFormat, StreamSpec}, + LocalTrack, Node, SourceTrackKind, + }, + CONF, }; use std::{fmt::Write, ops::Range, sync::Arc}; use tokio::{ |