#[cfg(not(any(feature = "conjure", feature = "tonic")))]
compile_error!("at least one of the `conjure` or `tonic` features must be enabled");
#[cfg(feature = "tonic")]
pub mod tonic {
pub use nominal_api_proto::*;
}
#[cfg(feature = "conjure")]
pub use nominal_api_conjure::*;