Skip to content

Commit

Permalink
Fix import issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vyPal committed Dec 26, 2024
1 parent 198f0f5 commit e04dda1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions pumpkin/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 2 additions & 2 deletions pumpkin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand All @@ -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;

Expand Down

0 comments on commit e04dda1

Please sign in to comment.