riptc_bridge/lib.rs
1use proc_macro::TokenStream;
2
3/// Indicates to riptc that a type or constant should be generated and shared despite not being
4/// a direct dependency of a route that we have detected.
5///
6/// This macro in and of itself doesn't do anything, it simply regurgitates your code back out.
7#[proc_macro_attribute]
8pub fn ript(_attrs: TokenStream, input: TokenStream) -> TokenStream {
9 input
10}