feat: integrate invitation access, world NPCs, and deployment

This commit is contained in:
2026-09-08 22:22:38 +08:00
parent 2a3125075f
commit 513a3eba31
75 changed files with 9566 additions and 1070 deletions

View File

@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { WorldNpcService } from './world_npc.service';
import { WorldNpcPlanner } from './world_npc.planner';
import { WorldNpcClock } from './world_npc.clock';
@Module({
providers: [WorldNpcService, WorldNpcPlanner, WorldNpcClock],
exports: [WorldNpcService, WorldNpcClock],
})
export class WorldNpcModule {}