Add bin directory.

This commit is contained in:
2026-02-28 14:38:42 -05:00
parent 1c3e3753d7
commit ed31ba7600
20 changed files with 86 additions and 90 deletions

View File

@@ -15,7 +15,7 @@ pub fn loggable(item: TokenStream) -> TokenStream {
let (impl_generics, type_generics, where_clause) = generics.split_for_impl();
let struct_name_str = struct_name.to_string();
let expanded = quote! {
impl #impl_generics crate::logging::Loggable for #struct_name #type_generics #where_clause {
impl #impl_generics clide::logging::Loggable for #struct_name #type_generics #where_clause {
const ID: &'static str = #struct_name_str;
}
};