diff --git a/pumpkin/src/lib.rs b/pumpkin/src/lib.rs index 1c00f227..6fe9304a 100644 --- a/pumpkin/src/lib.rs +++ b/pumpkin/src/lib.rs @@ -1,17 +1,15 @@ use std::sync::LazyLock; -use client::Client; use plugin::PluginManager; use pumpkin_core::text::TextComponent; use tokio::sync::Mutex; pub mod block; -pub mod client; pub mod command; pub mod entity; pub mod error; +pub mod net; pub mod plugin; -pub mod proxy; pub mod server; pub mod world; diff --git a/pumpkin/src/main.rs b/pumpkin/src/main.rs index d8f5d63f..1237ce3e 100644 --- a/pumpkin/src/main.rs +++ b/pumpkin/src/main.rs @@ -35,8 +35,8 @@ compile_error!("Compiling for WASI targets is not supported!"); use log::LevelFilter; -use plugin::PluginManager; use net::{lan_broadcast, query, rcon::RCONServer, Client}; +use plugin::PluginManager; use server::{ticker::Ticker, Server}; use std::{ io::{self}, @@ -62,8 +62,8 @@ pub mod block; pub mod command; pub mod entity; pub mod error; -pub mod plugin; pub mod net; +pub mod plugin; pub mod server; pub mod world;