1234567891011121314151617181920212223 |
- import { FightBase, fightLogOne, FightStart } from "../base";
- /**
- * 请求接口
- */
- export interface ReqFightTest {
- }
- /**
- * 返回信息
- */
- export interface ResFightTest extends FightBase {
-
- }
- export const conf = {
- connet: "ws"
- }
|