Files
ZYZ/game-server/app/servers/gate/remote/gateRemote.ts
2026-03-13 01:38:40 +00:00

17 lines
439 B
TypeScript

import { Application, ChannelService, FrontendSession, RemoterClass, HandlerService, } from 'pinus';
export default function (app: Application) {
new HandlerService(app, {});
return new GateRemote(app);
}
export class GateRemote {
constructor(private app: Application) {
this.app = app;
this.channelService = app.get('channelService');
}
private channelService: ChannelService;
}