use TokenStream;
use WasmMacro;
static MACRO: WasmMacro = new;
static WASM: & = include_bytes!;
/// Import `prost` generated definitions.
///
/// # Examples
///
/// Given a .proto file with a package `foo.bar`, you would write
/// ```
/// # use proto_import::import;
///
/// import!(foo::bar);
/// ```
/// which will expand to:
/// ```
/// pub mod foo {
/// pub mod bar {
/// include!(concat!(env!("OUT_DIR"), "/foo.bar.rs"));
/// }
/// }
/// ```