* Add Tenant initialisation service * few fixes * fix constraint * fix tests * update metadata json with employees and address * add V2 * remove metadata.gql
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { PrismaService } from './prisma.service';
|
|
|
|
@Module({
|
|
providers: [PrismaService],
|
|
exports: [PrismaService],
|
|
})
|
|
export class PrismaModule {}
|