From 6fa8950cf867a8e1246c2f2c90a4047ae5175f6f Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Wed, 30 Oct 2019 14:36:53 -0400 Subject: Replace Json handler with handler for status codes --- src/messages/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/messages/mod.rs') diff --git a/src/messages/mod.rs b/src/messages/mod.rs index ef326a0..18f2bb7 100644 --- a/src/messages/mod.rs +++ b/src/messages/mod.rs @@ -1,8 +1,10 @@ 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