http_mel/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![doc = include_str!("../README.md")]
3#![cfg_attr(feature = "mock", allow(unused))]
4
5#[cfg(any(
6 all(feature = "real", feature = "mock"),
7 not(any(feature = "real", feature = "mock"))
8))]
9compile_error!("One of the two features 'real' or 'mock' must be enabled");
10
11use melodium_macro::mel_package;
12pub mod client;
13pub mod method;
14pub mod server;
15pub mod status;
16
17mel_package!();