use axum::routing::post; use axum::Router; // use serde::Deserialize; // #[derive(Deserialize)] // struct FormData { // email: String, // name: String, // } pub fn routes_subscriptions() -> Router { Router::new().route("/subscriptions", post(|| async {})) }