20 lines
707 B
TypeScript
20 lines
707 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HealthController } from './controllers/health.controller';
|
|
import { SystemAccountController } from './controllers/system-account.controller';
|
|
import { PoolAccountController } from './controllers/pool-account.controller';
|
|
import { UserWalletController } from './controllers/user-wallet.controller';
|
|
import { RegionController } from './controllers/region.controller';
|
|
import { ApplicationModule } from '../application/application.module';
|
|
|
|
@Module({
|
|
imports: [ApplicationModule],
|
|
controllers: [
|
|
HealthController,
|
|
SystemAccountController,
|
|
PoolAccountController,
|
|
UserWalletController,
|
|
RegionController,
|
|
],
|
|
})
|
|
export class ApiModule {}
|