9 lines
163 B
Rust
9 lines
163 B
Rust
mod image;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro]
|
|
pub fn include_font_plate(input: TokenStream) -> TokenStream {
|
|
image::include_font_plate_impl(input)
|
|
}
|