aboutsummaryrefslogtreecommitdiff
path: root/src/messages/mod.rs
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2019-11-04 14:06:58 -0500
committerKevin J Hoerr <kjhoerr@protonmail.com>2019-11-04 14:06:58 -0500
commit4117f797cec89927fe3363543b8c8b11a311b90c (patch)
tree3f7320ee5a81a2e760c9f87991d63771633e5865 /src/messages/mod.rs
parent0c1dce106e0fb211cb52b2a780febd2a1b5f0a47 (diff)
downloadaugust-offensive-4117f797cec89927fe3363543b8c8b11a311b90c.tar.gz
august-offensive-4117f797cec89927fe3363543b8c8b11a311b90c.tar.bz2
august-offensive-4117f797cec89927fe3363543b8c8b11a311b90c.zip
Move FormatMsg to routes and add unit tests
Diffstat (limited to 'src/messages/mod.rs')
-rw-r--r--src/messages/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/messages/mod.rs b/src/messages/mod.rs
index afc97c6..37a1cb7 100644
--- a/src/messages/mod.rs
+++ b/src/messages/mod.rs
@@ -1,10 +1,8 @@
use std::marker::Sized;
-pub mod format_msg;
pub mod callback;
pub mod not_understood;
-pub use self::format_msg::FormatMsg;
pub use self::callback::Callback;
pub use self::not_understood::NotUnderstood;