数数:后台停服前关闭

This commit is contained in:
luying
2021-12-15 10:41:30 +08:00
parent 2092d692df
commit 05e410d28f
10 changed files with 56 additions and 5 deletions

View File

@@ -2,6 +2,7 @@ import { Application, ChannelService, HandlerService, } from 'pinus';
import { reloadResources } from '../../../pubUtils/data';
import { settleOrderFromRedisPub } from '../../../services/orderService';
import { getServerMainten, setServerMainten, stopServerMainten } from '../../../services/gmService';
import { taflush } from '../../../services/sdkService';
export default function (app: Application) {
new HandlerService(app, {});
@@ -39,4 +40,8 @@ export class OrderRemote {
public getServerMainten(serverId: number) {
return getServerMainten(serverId);
}
public taflush() {
return taflush();
}
}