You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
361 B
TypeScript

4 weeks ago
import webapi from "./gocliRequest"
import * as components from "./mainComponents"
export * from "./mainComponents"
4 weeks ago
/**
* @description
* @param params
* @param req
*/
export function login(pa: string, req: components.AppReq, params: components.AppReqParams) {
return webapi.get<components.AppResp>(`/api/app/login/${pa}`, {"params":params, "req":req})
}