Confirm subscription endpoint

This commit is contained in:
Alphonse Paix
2025-08-25 17:46:03 +02:00
parent 310a202ca3
commit 415d787260
13 changed files with 420 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();