aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index 7a36cb1..d237df0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,10 @@
-use calender_thing::{
- interface::network_loop,
- protocol::{ClientboundPacket, ServerboundPacket},
-};
+pub mod condition;
+pub mod interface;
+pub mod protocol;
+
use crossbeam_channel::{Receiver, Sender};
+use interface::network_loop;
+use protocol::{ClientboundPacket, ServerboundPacket};
use std::time::Duration;
fn main() {