-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: batch-create-wallet endpoint protected by csv file check
- Loading branch information
1 parent
d8bb927
commit f328495
Showing
10 changed files
with
100 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
import { forwardRef, Module } from '@nestjs/common'; | ||
import { TypeOrmModule } from '@nestjs/typeorm'; | ||
import { WalletController } from './wallet.controller'; | ||
import { WalletService } from './wallet.service'; | ||
import { WalletRepository } from './wallet.repository'; | ||
import { TokenModule } from '../token/token.module'; | ||
import { TrustModule } from '../trust/trust.module'; | ||
import { EventModule } from '../event/event.module'; | ||
import { S3Service } from '../../common/services/s3.service'; | ||
import { TransferModule } from '../transfer/transfer.module'; | ||
import { Wallet } from './entity/wallet.entity'; | ||
|
||
@Module({ | ||
imports: [ | ||
TypeOrmModule.forFeature([WalletRepository]), | ||
TypeOrmModule.forFeature([Wallet]), | ||
forwardRef(() => TransferModule), | ||
EventModule, | ||
TokenModule, | ||
TrustModule, | ||
], | ||
providers: [WalletService, S3Service], | ||
exports: [WalletService], | ||
controllers: [WalletController], | ||
providers: [WalletRepository, WalletService, S3Service], | ||
exports: [WalletRepository, WalletService], | ||
}) | ||
export class WalletModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters