gene res 생성 및 next 업데이트
This commit is contained in:
9
backend/src/gene/gene.module.ts
Normal file
9
backend/src/gene/gene.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { GeneService } from './gene.service';
|
||||
import { GeneController } from './gene.controller';
|
||||
|
||||
@Module({
|
||||
controllers: [GeneController],
|
||||
providers: [GeneService],
|
||||
})
|
||||
export class GeneModule {}
|
||||
Reference in New Issue
Block a user