* adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HealthController } from './health.controller';
|
|
import { HealthService } from './health.service';
|
|
|
|
@Module({
|
|
controllers: [HealthController],
|
|
providers: [
|
|
HealthService
|
|
]
|
|
})
|
|
export class HealthModule {}
|