From 17d1606ae6c2e95b94ada404187cc61dde931bff Mon Sep 17 00:00:00 2001 From: Mo8it Date: Thu, 23 Feb 2023 17:13:52 +0100 Subject: [PATCH] Document forms --- src/forms.rs | 2 ++ 1 file changed, 2 insertions(+) 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,