HttpServer working with GET routes
This commit is contained in:
13
Web/WebSocket/websocket/server/src/health/HealthCheck.ts
Normal file
13
Web/WebSocket/websocket/server/src/health/HealthCheck.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type {HealthStatus} from './IHealthCheck';
|
||||
|
||||
export default class HealthCheck {
|
||||
public checkHealth(): HealthStatus {
|
||||
return {
|
||||
status: 'ok',
|
||||
environment: 'development',
|
||||
app: 'websocket-server',
|
||||
version: '0.0.1',
|
||||
zone: 'us-central1'
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user