Skip to main content

elfo_macros_impl/
lib.rs

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