PlayEdu-backend/src/api/system.ts
2023-04-11 11:01:15 +08:00

9 lines
236 B
TypeScript

import client from "./internal/httpClient";
export function getImageCaptcha() {
return client.get("/backend/v1/system/image-captcha", {});
}
export function getSystemConfig() {
return client.get("/backend/v1/system/config", {});
}