aitasker / backend /src /shared /ledger /ledger.module.ts
minhhungg's picture
feat: upload dataset and simulation files to Hugging Face
675f6bd
Raw
History Blame Contribute Delete
345 Bytes
import { Global, Module } from '@nestjs/common';
import { PrismaService } from 'prisma/prisma.service';
import { AuthService } from 'src/auth/auth.service';
import { LedgerService } from './ledger.service';
@Global()
@Module({
providers: [LedgerService, AuthService, PrismaService],
exports: [LedgerService],
})
export class LedgerModule {}