mirror of
https://github.com/Kevsl/crypto-exchange-api.git
synced 2025-07-13 07:10:13 +02:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { PrismaService } from './prisma.service';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [PrismaService],
|
|
exports: [PrismaService],
|
|
})
|
|
export class PrismaModule {}
|