applause_derive 0.1.0

Command Line Interfaces and Configuration Management made easy
Documentation
1
2
3
4
5
6
7
8
9
10
use proc_macro::TokenStream;
use quote::quote;

#[proc_macro]
pub fn make_answer(_item: TokenStream) -> TokenStream {
    quote! {"/// Applause Derive
/// 
/// Do not use this crate.  Instead, use the `applause` crate with its `derive` feature."}
    .into()
}