feat: scaffold center and guild backend NestJS skeletons
This commit is contained in:
9
Fabric.Backend.Center/src/common/health.controller.ts
Normal file
9
Fabric.Backend.Center/src/common/health.controller.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
|
||||
@Controller('healthz')
|
||||
export class HealthController {
|
||||
@Get()
|
||||
get() {
|
||||
return { ok: true, service: 'center' };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user