We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3546d4c commit d96a0c6Copy full SHA for d96a0c6
src/main.rs
@@ -43,6 +43,10 @@ async fn main() {
43
validator::validate_signature_middleware,
44
))
45
.with_state(state);
46
+
47
+ let health = Router::new()
48
+ .route("/health", axum::routing::get(routes::healthcheck))
49
+ .nest("/", app);
50
51
println!("listening on {}", listener.local_addr().unwrap());
52
0 commit comments