appconfig

This commit is contained in:
禺狨 2023-03-10 13:49:54 +08:00
parent cea64b2e1c
commit c010b71828

9
src/api/app-config.ts Normal file
View File

@ -0,0 +1,9 @@
import client from "./internal/httpClient";
export function appConfig() {
return client.get("/backend/v1/app-config", {});
}
export function saveAppConfig() {
return client.put(`/backend/v1/app-config`, {});
}