power_reqwest_lib/
expand.rs

1
2
3
4
5
6
7
use quote::ToTokens;

use crate::model::Client;

impl ToTokens for Client {
    fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) {}
}