mirror of
https://github.com/apricote/Listory.git
synced 2026-02-08 18:57:03 +00:00
feat(api): add health-check endpoint
This commit is contained in:
parent
e78c6e312d
commit
202665a510
5 changed files with 64 additions and 0 deletions
6
src/health-check/health-check.module.ts
Normal file
6
src/health-check/health-check.module.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { Module } from "@nestjs/common";
|
||||
import { TerminusModule } from "@nestjs/terminus";
|
||||
import { HealthCheckController } from "./health-check.controller";
|
||||
|
||||
@Module({ imports: [TerminusModule], controllers: [HealthCheckController] })
|
||||
export class HealthCheckModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue