1//! An internal crate for the `message` and `msg` macros.
2//! Prefer the `elfo-macros` crate if you don't need to wrap macros.
34extern crate proc_macro;
56mod errors;
7mod message;
8mod msg;
910pub use message::message_impl;
11pub use msg::msg_impl;