import { ApiCall } from "tsrpc"; import { Reqdeploy, Resdeploy } from "../../monopoly/protocols/games/Ptldeploy"; import { initStarupFun } from "../../starup"; export default async function (call: ApiCall) { try{ initStarupFun.initStart() }catch(err){ call.succ({message:err.toString(), code:-1}) } // 区服初始化 call.succ({ message: "success", code: 0 }); }