From 4117f797cec89927fe3363543b8c8b11a311b90c Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Mon, 4 Nov 2019 14:06:58 -0500 Subject: Move FormatMsg to routes and add unit tests --- src/messages/mod.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/messages/mod.rs') 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; -- cgit