2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 12:40:25 +08:00
Files
panel/web/src/api/apps/docker/index.ts
2025-02-04 23:52:36 +08:00

7 lines
194 B
Go

import { http } from '@/utils'
export default {
getConfig: (): any => http.Get('/apps/docker/config'),
updateConfig: (config: string): any => http.Post('/apps/docker/config', { config })
}