mailjet_api_wrapper 0.5.1

Unofficial wrapper for Mailjet's API
Documentation
1
2
3
4
5
6
7
8
9
10
/// Logs an info if log feature is enabled
macro_rules! info {
    ($($x:tt)*) => (
        #[cfg(feature = "log")] {
            log::info!($($x)*)
        }
    )
}

pub(crate) use info;