applause_derive 0.1.1

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_derive(Config)]
pub fn config(_item: TokenStream) -> TokenStream {
    quote! {"/// Applause Derive
/// 
/// Do not use this crate.  Instead, use the `applause` crate with its `derive` feature."}
    .into()
}