mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 12:40:25 +08:00
7 lines
194 B
Go
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 })
|
|
}
|