diff --git a/src/forms.rs b/src/forms.rs index 2a65dd5..52e3b21 100644 --- a/src/forms.rs +++ b/src/forms.rs @@ -1,7 +1,9 @@ use serde::Deserialize; +/// The contact form. #[derive(Deserialize)] pub struct ContactForm { + /// The id for the captcha. pub id: u16, pub name: String, pub email: String,