use actix_web::{web, HttpResponse}; #[derive(serde::Deserialize)] pub struct FormData { email: String, name: String, } pub async fn subscribe_route(_form: web::Form) -> HttpResponse { HttpResponse::Ok().finish() }