Files
18xchat/assets/Scripts/chat18x/network/services/AuthService.ts
T
2025-08-25 11:31:15 +08:00

25 lines
807 B
TypeScript

import { ApiClient } from "../client/ApiClient";
import type { Endpoint } from "../client/endpoints";
import type { ApiResponse } from "../client/types";
import proto from 'db://assets/Scripts/proto/proto.pb.js';
export class AuthService {
private static _I: AuthService | null = null;
public static get I(): AuthService {
if (!AuthService._I) AuthService._I = new AuthService();
return AuthService._I;
}
private constructor(private api = ApiClient.I) {}
// 登录
public async login(req: proto.cs.ICSLoginReq): Promise<ApiResponse<proto.cs.ICSLoginRes>> {
let epData: Endpoint<proto.cs.ICSLoginReq, proto.cs.ICSLoginRes> = {
path: "api/acc/login",
method: "POST",
codec: "json",
needsAuth: false
};
return this.api.call(epData, req);
}
}