mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-19 14:20:11 +00:00
5 lines
158 B
Rust
5 lines
158 B
Rust
![]() |
use proc_macro2::TokenStream;
|
||
|
pub fn expand_enum_derive(_input: &syn::DeriveInput) -> Result<TokenStream, Vec<syn::Error>> {
|
||
|
Ok(TokenStream::default())
|
||
|
}
|