mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-05 22:07:40 +03:00
Payload extractor
This commit is contained in:
parent
d77954d19e
commit
b211966c28
4 changed files with 107 additions and 52 deletions
|
@ -1,31 +0,0 @@
|
|||
use std::collections::HashSet;
|
||||
use std::env;
|
||||
use std::fs::File;
|
||||
use std::io::Read;
|
||||
use std::path::PathBuf;
|
||||
|
||||
use proc_macro2::TokenStream;
|
||||
use quote::{quote, ToTokens};
|
||||
use syn;
|
||||
|
||||
/// Thrift mux server impl
|
||||
pub struct Server {}
|
||||
|
||||
impl Server {
|
||||
fn new() -> Server {
|
||||
Server {}
|
||||
}
|
||||
|
||||
/// generate servers
|
||||
pub fn generate(input: TokenStream) {
|
||||
let mut srv = Server::new();
|
||||
let ast: syn::ItemFn = syn::parse2(input).unwrap();
|
||||
println!("T: {:?}", ast.ident);
|
||||
|
||||
// quote! {
|
||||
// #ast
|
||||
|
||||
// #(#servers)*
|
||||
// }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue