2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 18:27:13 +08:00

feat: 支持memcached

This commit is contained in:
耗子
2024-11-02 17:48:52 +08:00
parent 7169b90c1d
commit aa162e12db
8 changed files with 419 additions and 83 deletions

View File

@@ -0,0 +1,8 @@
import { http } from '@/utils'
// 负载状态
export const getLoad = () => http.Get('/apps/memcached/load')
// 获取配置
export const getConfig = () => http.Get('/apps/memcached/config')
// 保存配置
export const updateConfig = (config: string) => http.Post('/apps/memcached/config', { config })