From 6369ea2d4ad2aa854b4876bb6f6f9ec4a5dbaafd Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Mon, 11 Jul 2022 01:50:40 +0000 Subject: [PATCH] Expose api impl --- qbittorrent-web-api-gen/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbittorrent-web-api-gen/src/lib.rs b/qbittorrent-web-api-gen/src/lib.rs index e66d01d..ae63a37 100644 --- a/qbittorrent-web-api-gen/src/lib.rs +++ b/qbittorrent-web-api-gen/src/lib.rs @@ -26,7 +26,7 @@ pub fn derive(input: TokenStream) -> TokenStream { let impl_ident = syn::Ident::new(&format!("{}_impl", ident).to_snake(), ident.span()); quote! { - mod #impl_ident { + pub mod #impl_ident { #skeleton #groups }