Confirm subscription endpoint

This commit is contained in:
Alphonse Paix
2025-08-25 17:46:03 +02:00
parent 73ff7c04fe
commit d1cf1f6c4f
14 changed files with 421 additions and 39 deletions

View File

@@ -6,7 +6,7 @@ async fn health_check_works() {
let client = reqwest::Client::new();
let response = client
.get(format!("http://{}/health_check", app.address))
.get(format!("{}/health_check", app.address))
.send()
.await
.unwrap();