mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 22:30:55 +00:00
7 lines
250 B
TypeScript
7 lines
250 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WalletController } from './wallet.controller';
|
|
import { WalletService } from './wallet.service';
|
|
|
|
@Module({ controllers: [WalletController], providers: [WalletService] })
|
|
export class WalletModule {}
|