2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-07 16:47:14 +08:00

feat: 新增code server应用,close #82

This commit is contained in:
2025-04-13 18:09:55 +08:00
parent a6a42f0f11
commit d82e59b4eb
7 changed files with 241 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import { http } from '@/utils'
export default {
// 获取配置
config: (): any => http.Get('/apps/codeserver/config'),
// 保存配置
saveConfig: (config: string): any => http.Post('/apps/codeserver/config', { config })
}