test: update inactive test

This commit is contained in:
Sandro Eiler 2024-01-01 22:11:18 +01:00
parent f2398b650c
commit 08561d48a2
2 changed files with 8 additions and 8 deletions

View file

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