feat: deploy adventure wallet progression

This commit is contained in:
2026-09-19 04:19:41 +08:00
parent fdb36558d3
commit 37c97708e3
14 changed files with 362 additions and 32 deletions

View File

@@ -1,4 +1,5 @@
import { Module } from '@nestjs/common';
import { AdventureService } from './adventure.service';
import { AuthModule } from '../auth/auth.module';
import { LoginCoreModule } from '../../core/login_core/login_core.module';
import { InventoryController } from './inventory.controller';
@@ -10,7 +11,7 @@ import { PlayerStateService } from './player_state.service';
@Module({
imports: [AuthModule, LoginCoreModule],
controllers: [PlayerController, InventoryController],
providers: [EconomyService, InventoryService, PlayerStateService],
providers: [EconomyService, InventoryService, PlayerStateService, AdventureService],
exports: [EconomyService, InventoryService, PlayerStateService],
})
export class PlayerModule {}