You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
368 B
11 lines
368 B
import { Module } from '@nestjs/common'; |
|
import { WalletsService } from './wallets.service'; |
|
import { WalletsController } from './wallets.controller'; |
|
import { walletsProviders } from './wallets.providers'; |
|
|
|
@Module({ |
|
controllers: [WalletsController], |
|
providers: [WalletsService, ...walletsProviders], |
|
exports: [WalletsService], |
|
}) |
|
export class WalletsModule {}
|
|
|