Refactor crates.

This commit is contained in:
2026-02-24 21:26:59 -05:00
parent 3473eeb529
commit bfd81c5133
30 changed files with 209 additions and 221 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 libclide::log::Loggable for #struct_name #type_generics #where_clause {
impl #impl_generics crate::logging::Loggable for #struct_name #type_generics #where_clause {
const ID: &'static str = #struct_name_str;
}
};