fix: use snake_case for handler names (#565)

This commit is contained in:
Jacob Marshall
2025-02-16 17:53:40 +00:00
committed by GitHub
parent d4648afe01
commit 06bc3700b7
5 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ pub fn api_core(attrs: TokenStream, item: TokenStream) -> TokenStream {
.to_lowercase();
let api_fn_name = Ident::new(
&format!("{}__tuono_internal_api", http_method),
&format!("{}_tuono_internal_api", http_method),
Span::call_site().into(),
);