This commit is contained in:
2024-10-11 17:11:47 +07:00
parent 9023725fc4
commit 85026556b2
17 changed files with 794 additions and 92 deletions

View File

@@ -1,9 +1,10 @@
import { Global, Module } from '@nestjs/common';
import { ServiceSchema } from './service.schema';
import { PrismaCrudGenerator } from 'src/graphql/graphql.generator';
@Global()
@Module({
providers: [ServiceSchema],
providers: [ServiceSchema, PrismaCrudGenerator],
exports: [ServiceSchema],
})
export class ServiceModule {}