forked from xiangwang25/whale-town-end-v2
feat: integrate invitation access, world NPCs, and deployment
This commit is contained in:
10
src/business/world_npc/world_npc.module.ts
Normal file
10
src/business/world_npc/world_npc.module.ts
Normal 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 {}
|
||||
Reference in New Issue
Block a user