Untitled
unknown
plain_text
a year ago
461 B
10
Indexable
// insecticide.module.ts
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { InsectController } from './insect.controller';
import { insectService } from './insect.service';
import { insect} from './insect.entity';
@Module({
imports: [TypeOrmModule.forFeature([insect])],
controllers: [InsectController],
providers: [insectService],
exports: [insectService],
})
export class InsectModule {}
Editor is loading...
Leave a Comment