Add basic nomad integration and runner provider

This commit is contained in:
Maximilian Paß
2021-05-04 13:04:37 +02:00
parent 40a22ecbb1
commit c092199693
24 changed files with 1141 additions and 34 deletions

View File

@@ -7,8 +7,5 @@ import (
// Health tries to respond that the server is alive.
// If it is not, the response won't reach the client.
func Health(writer http.ResponseWriter, _ *http.Request) {
writeJson(
writer,
Message{"I'm alive!"},
)
writer.WriteHeader(http.StatusNoContent)
}