chore: code format

This commit is contained in:
xiaojunnuo
2025-06-29 14:09:09 +08:00
parent 04422a4637
commit 4fcfd089d8
644 changed files with 10845 additions and 13184 deletions
@@ -5,7 +5,7 @@ const apiPrefix = "/sys/site";
export async function SettingsGet(key: string) {
return await request({
url: apiPrefix + "/get",
method: "post"
method: "post",
});
}
@@ -13,6 +13,6 @@ export async function SettingsSave(setting: any) {
await request({
url: apiPrefix + "/save",
method: "post",
data: setting
data: setting,
});
}