fix: formatter deleting import

This commit is contained in:
kieran 2024-11-22 17:33:58 +00:00
parent ae342a1bfa
commit afbc2fc8b2
No known key found for this signature in database
GPG Key ID: DE71CEB3925BE941

View File

@ -4,7 +4,15 @@ use crate::ingress::ConnectionInfo;
use crate::overseer::local::LocalOverseer;
#[cfg(feature = "webhook-overseer")]
use crate::overseer::webhook::WebhookOverseer;
#[cfg(feature = "zap-stream")]
use crate::overseer::zap_stream::ZapStreamOverseer;
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::variant::audio::AudioVariant;
use crate::variant::mapping::VariantMapping;
@ -18,9 +26,6 @@ use std::path::PathBuf;
use std::sync::Arc;
use uuid::Uuid;
#[cfg(feature = "zap-stream")]
use crate::overseer::zap_stream::ZapStreamOverseer;
#[cfg(feature = "local-overseer")]
mod local;