페이지 화면 수정 및 dockerfile 수정
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { GeneService } from './gene.service';
|
||||
import { GeneController } from './gene.controller';
|
||||
import { GeneDetailModel } from './entities/gene-detail.entity';
|
||||
import { GenomeRequestModel } from '../genome/entities/genome-request.entity';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
TypeOrmModule.forFeature([GeneDetailModel, GenomeRequestModel]),
|
||||
],
|
||||
controllers: [GeneController],
|
||||
providers: [GeneService],
|
||||
exports: [GeneService],
|
||||
})
|
||||
export class GeneModule {}
|
||||
|
||||
Reference in New Issue
Block a user