军团活动:修复debug接口

This commit is contained in:
luying
2021-03-24 17:51:13 +08:00
parent 5290b257b8
commit ca12af8091
4 changed files with 36 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
import { Application, ChannelService } from "pinus";
export default function (app: Application) {
return new RaceActivityHandler(app);
}
export class RaceActivityHandler {
channelService: ChannelService;
constructor(private app: Application) {
this.channelService = app.get('channelService');
}
}