mirror of
https://github.com/PlayEdu/backend
synced 2025-07-19 22:35:37 +08:00
9 lines
236 B
TypeScript
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", {});
|
|
} |