邮件 活跃度下发
This commit is contained in:
20
game-server/app/servers/gate/remote/gateRemote.ts
Normal file
20
game-server/app/servers/gate/remote/gateRemote.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Application, ChannelService, FrontendSession, RemoterClass } from 'pinus';
|
||||
import { setGmMails, getGmMailById, getGmMails } from '../../../pubUtils/gmData/gmDataUtil';
|
||||
import { MAIL_TYPE, MAIL_TEM_TYPE } from "../../../consts/constModules/mailConst";
|
||||
import { mailData } from "../../../pubUtils/interface";
|
||||
import { getContent } from '../../../services/mailService';
|
||||
import { findWhere } from 'underscore';
|
||||
export default function (app: Application) {
|
||||
return new GateRemote(app);
|
||||
}
|
||||
|
||||
export class GateRemote {
|
||||
|
||||
constructor(private app: Application) {
|
||||
this.app = app;
|
||||
this.channelService = app.get('channelService');
|
||||
}
|
||||
|
||||
private channelService: ChannelService;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user