forked from xiangwang25/whale-town-end-v2
Initial WhaleTown V2 backend
This commit is contained in:
16
src/business/player/player.module.ts
Normal file
16
src/business/player/player.module.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { AuthModule } from '../auth/auth.module';
|
||||
import { LoginCoreModule } from '../../core/login_core/login_core.module';
|
||||
import { InventoryController } from './inventory.controller';
|
||||
import { PlayerController } from './player.controller';
|
||||
import { EconomyService } from './economy.service';
|
||||
import { InventoryService } from './inventory.service';
|
||||
import { PlayerStateService } from './player_state.service';
|
||||
|
||||
@Module({
|
||||
imports: [AuthModule, LoginCoreModule],
|
||||
controllers: [PlayerController, InventoryController],
|
||||
providers: [EconomyService, InventoryService, PlayerStateService],
|
||||
exports: [EconomyService, InventoryService, PlayerStateService],
|
||||
})
|
||||
export class PlayerModule {}
|
||||
Reference in New Issue
Block a user