feat: expand novel IP and production workflows
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PrismaModule } from '../prisma/prisma.module';
|
||||
import { GenerationPlanService } from './generation-plan.service';
|
||||
|
||||
@Module({
|
||||
imports: [PrismaModule],
|
||||
providers: [GenerationPlanService],
|
||||
exports: [GenerationPlanService]
|
||||
})
|
||||
export class GenerationPlanModule {}
|
||||
Reference in New Issue
Block a user