dotinstall_macro/
lib.rs

1use proc_macro::TokenStream;
2
3mod installer;
4
5#[proc_macro]
6pub fn installer(tokens: TokenStream) -> TokenStream {
7    installer::installer(tokens.into()).into()
8}