From 9b5cb186932a0fbd7bd4897f89a9e9654b264bda Mon Sep 17 00:00:00 2001 From: michael-bailey Date: Tue, 16 Mar 2021 09:40:34 +0000 Subject: [PATCH] moved commands into lib module --- src/{ => lib}/commands/behaviors.rs | 0 src/{ => lib}/commands/mod.rs | 0 src/lib/mod.rs | 1 + 3 files changed, 1 insertion(+) rename src/{ => lib}/commands/behaviors.rs (100%) rename src/{ => lib}/commands/mod.rs (100%) diff --git a/src/commands/behaviors.rs b/src/lib/commands/behaviors.rs similarity index 100% rename from src/commands/behaviors.rs rename to src/lib/commands/behaviors.rs diff --git a/src/commands/mod.rs b/src/lib/commands/mod.rs similarity index 100% rename from src/commands/mod.rs rename to src/lib/commands/mod.rs diff --git a/src/lib/mod.rs b/src/lib/mod.rs index 0b03722..4ef91b1 100644 --- a/src/lib/mod.rs +++ b/src/lib/mod.rs @@ -2,6 +2,7 @@ pub mod prelude; pub mod server; pub mod Foundation; +pub mod commands; use std::sync::Arc; use std::sync::Mutex;