gpui_component_macros/
lib.rs

1use proc_macro::TokenStream;
2
3mod derive_into_plot;
4
5#[proc_macro_derive(IntoPlot)]
6pub fn derive_into_plot(input: TokenStream) -> TokenStream {
7    derive_into_plot::derive_into_plot(input)
8}