gene res 생성 및 next 업데이트

This commit is contained in:
2025-12-10 09:32:07 +09:00
parent 9346760aeb
commit 24ab0489f3
8 changed files with 102 additions and 42 deletions

View 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 {}