mirror of
https://github.com/v0l/zap-stream-core.git
synced 2025-06-18 12:27:12 +00:00
fix: formatter deleting import
This commit is contained in:
@ -4,7 +4,15 @@ use crate::ingress::ConnectionInfo;
|
|||||||
use crate::overseer::local::LocalOverseer;
|
use crate::overseer::local::LocalOverseer;
|
||||||
#[cfg(feature = "webhook-overseer")]
|
#[cfg(feature = "webhook-overseer")]
|
||||||
use crate::overseer::webhook::WebhookOverseer;
|
use crate::overseer::webhook::WebhookOverseer;
|
||||||
|
#[cfg(feature = "zap-stream")]
|
||||||
|
use crate::overseer::zap_stream::ZapStreamOverseer;
|
||||||
use crate::pipeline::PipelineConfig;
|
use crate::pipeline::PipelineConfig;
|
||||||
|
#[cfg(any(
|
||||||
|
feature = "local-overseer",
|
||||||
|
feature = "webhook-overseer",
|
||||||
|
feature = "zap-stream"
|
||||||
|
))]
|
||||||
|
use crate::settings::OverseerConfig;
|
||||||
use crate::settings::Settings;
|
use crate::settings::Settings;
|
||||||
use crate::variant::audio::AudioVariant;
|
use crate::variant::audio::AudioVariant;
|
||||||
use crate::variant::mapping::VariantMapping;
|
use crate::variant::mapping::VariantMapping;
|
||||||
@ -18,9 +26,6 @@ use std::path::PathBuf;
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
#[cfg(feature = "zap-stream")]
|
|
||||||
use crate::overseer::zap_stream::ZapStreamOverseer;
|
|
||||||
|
|
||||||
#[cfg(feature = "local-overseer")]
|
#[cfg(feature = "local-overseer")]
|
||||||
mod local;
|
mod local;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user