mirror of
https://github.com/PlayEdu/backend
synced 2025-06-23 11:52:44 +08:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import client from "./internal/httpClient";
|
|
|
|
export function appConfig() {
|
|
return client.get("/backend/v1/app-config", {});
|
|
}
|
|
|
|
export function saveAppConfig(data: any) {
|
|
return client.put(`/backend/v1/app-config`, { data: data });
|
|
}
|