2025-08-29 16:39:41 +08:00
|
|
|
import type { ApiResponse } from "../client/types";
|
|
|
|
|
import proto from "db://assets/Scripts/proto/proto.pb.js";
|
|
|
|
|
|
|
|
|
|
export interface IAuthService {
|
|
|
|
|
// 登录
|
|
|
|
|
login(req: proto.cs.ICSLoginReq): Promise<ApiResponse<proto.cs.ICSLoginRes>>;
|
2025-10-16 11:19:07 +08:00
|
|
|
|
|
|
|
|
// 上报事件
|
|
|
|
|
pointEvent(req: proto.cs.ICSPointEventReq): Promise<ApiResponse<proto.cs.ICSPointEventRes>>;
|
2025-08-29 16:39:41 +08:00
|
|
|
}
|