add HEAD for healthcheck

This commit is contained in:
Will Freeman
2024-11-30 16:32:34 -07:00
parent 190f9c4735
commit 0baaecfd88
3 changed files with 4 additions and 1 deletions
@@ -83,6 +83,9 @@ object ShotgunServer {
get {
complete(HttpResponse(StatusCodes.OK, entity = "Service is healthy"))
}
head {
complete(StatusCodes.OK)
}
}
)
}