feat: initial Papo bot scaffold
This commit is contained in:
15
src/config/context.ts
Normal file
15
src/config/context.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { CommandHandler } from '../services/commandHandler.js';
|
||||
import { AutoModService } from '../services/automodService.js';
|
||||
import { LoggingService } from '../services/loggingService.js';
|
||||
import { MusicService } from '../services/musicService.js';
|
||||
import { TicketService } from '../services/ticketService.js';
|
||||
import { LevelService } from '../services/levelService.js';
|
||||
|
||||
export const context = {
|
||||
commandHandler: null as CommandHandler | null,
|
||||
automod: new AutoModService(true, true),
|
||||
logging: new LoggingService(),
|
||||
music: new MusicService(),
|
||||
tickets: new TicketService(),
|
||||
leveling: new LevelService()
|
||||
};
|
||||
Reference in New Issue
Block a user