mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-28 21:39:32 +08:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import client from "./internal/httpClient";
|
|
|
|
export function config() {
|
|
return client.get("/api/v1/system/config", {});
|
|
}
|
|
|
|
export function imageCaptcha() {
|
|
return client.get("/api/v1/system/image-captcha", {});
|
|
}
|