Skip to content

Commit

Permalink
Modify file names
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-uchida committed Dec 25, 2024
1 parent 7f26651 commit 4672b15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions moqt-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ use tokio::sync::{mpsc, mpsc::Sender, Mutex};
use tracing::{self, Instrument};
use wtransport::{Endpoint, Identity, ServerConfig};
mod modules;
pub use modules::moqt_config::MOQTConfig;
pub use modules::config::MOQTConfig;
use modules::{
buffer_manager::{buffer_manager, BufferCommand},
logging,
logging::init_logging,
object_cache_storage::{object_cache_storage, ObjectCacheStorageCommand},
pubsub_relation_manager::{commands::PubSubRelationCommand, manager::pubsub_relation_manager},
send_stream_dispatcher::{send_stream_dispatcher, SendStreamDispatchCommand},
Expand Down Expand Up @@ -47,7 +47,7 @@ impl MOQTServer {
}
}
pub async fn start(&self) -> Result<()> {
logging::init_logging(self.log_level.to_string());
init_logging(self.log_level.to_string());

if self.underlay != UnderlayType::WebTransport {
bail!("Underlay must be WebTransport, not {:?}", self.underlay);
Expand Down
2 changes: 1 addition & 1 deletion moqt-server/src/modules.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pub mod buffer_manager;
pub(crate) mod config;
pub(crate) mod logging;
pub(crate) mod message_handlers;
pub(crate) mod moqt_client;
pub(crate) mod moqt_config;
pub(crate) mod object_cache_storage;
pub(crate) mod pubsub_relation_manager;
pub(crate) mod send_stream_dispatcher;
Expand Down
File renamed without changes.

0 comments on commit 4672b15

Please sign in to comment.