mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
6 lines
271 B
TypeScript
6 lines
271 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { TerminusModule } from "@nestjs/terminus";
|
|
import { HealthCheckController } from "./health-check.controller";
|
|
|
|
@Module({ imports: [TerminusModule], controllers: [HealthCheckController] })
|
|
export class HealthCheckModule {}
|