Untitled

 avatar
unknown
plain_text
9 months ago
461 B
5
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