/// Generate a struct from an HTML form.
///
/// # Arguments
///
/// - `path`: Path to the HTML file
/// - `form`: CSS form selector
/// - `name`: Struct name
///
/// # Example
///
/// ```ignore
/// # use html_form_struct::form_struct;
///
/// form_struct! {
/// "path/to/form.html",
/// "form#my-form",
/// MyForm
/// }
/// ```
pub use form_struct;