seedling/source/api/src/common/health/health.module.ts
Roman Jaroš 6ea4c9022d Replace HapiJs with NestJs as API framework
Change-Id: I54dc6c5f6377358e4f6614378fbb253b0c7841a9
2023-09-14 20:18:20 +02:00

8 lines
189 B
TypeScript

// @ts-nocheck
import { Module } from '@nestjs/common';
import { HealthController } from './health.controller';
@Module({
controllers: [HealthController],
})
export class HealthModule {}