#![cfg(test)]
mod axum;
mod picoserve;
#[test]
fn derive_form_input_names() {
#[derive(super::FormInputNames)]
#[allow(dead_code)]
struct TestStruct {
value: i32,
r#type: String,
}
let test_struct::Form {
value_name: _,
type_name: _,
} = test_struct::FORM;
}