mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-02 06:24:33 +08:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
import http from '@/api/http'
|
|
|
|
|
|
export default (uuid: string, nameservers: string[]) => {
|
|
return http.put(`/api/client/servers/${uuid}/settings/network`, {
|
|
nameservers
|
|
})
|
|
} |