fix(clippy): rename module to fix clippy warning

This commit is contained in:
MedzikUser 2022-08-12 23:16:13 +02:00
parent 84eed33e24
commit 6f7edf3d30
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ use std::{
use tungstenite::{accept, Message, WebSocket};
use super::server::PLUGINS_MANAGER;
use super::run::PLUGINS_MANAGER;
use crate::plugins::manager::PluginsManagerType;
/// Max length of a TCP and UDP packet

View File

@ -1,5 +1,5 @@
mod client;
mod server;
mod run;
pub use client::*;
pub use server::*;
pub use run::*;