Add a health endpoint

For monitoring
This commit is contained in:
Travis Ralston 2018-03-26 18:46:08 -06:00
parent 2c1366d9d7
commit 1233be85e9

View File

@ -0,0 +1,11 @@
import { GET, Path } from "typescript-rest";
@Path("/api/v1/dimension/health")
export class DimensionHealthService {
@GET
@Path("heartbeat")
public async heartbeat(): Promise<any> {
return {}; // 200 OK
}
}