mod get;
mod to_vec;
use proc_macro::TokenStream;
use syn::{parse_macro_input, DeriveInput, Expr};
#[proc_macro_derive(ToVec, attributes(to_vec))]
pub fn to_vec_derive(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input as DeriveInput);
to_vec::impl_to_vec(&input)
}