| 118 | } |
| 119 | |
| 120 | type FunctionResponse struct { |
| 121 | Status string `json:"Status"` |
| 122 | Function string `json:"Function"` |
| 123 | MachineName string `json:"MachineName"` |
| 124 | ExecutionTime int64 `json:"ExecutionTime"` |
| 125 | } |
| 126 | |
| 127 | func healthHandler(w http.ResponseWriter, _ *http.Request) { |
| 128 | w.WriteHeader(http.StatusOK) |
nothing calls this directly
no outgoing calls
no test coverage detected