mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-06-08 05:14:12 +08:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import client from "./internal/httpClient";
|
|
|
|
export function config() {
|
|
return client.post("/api/v1/system/config", {});
|
|
}
|
|
|
|
export function imageCaptcha() {
|
|
return client.post("/api/v1/system/image-captcha", {});
|
|
}
|