8 lines
No EOL
188 B
TypeScript
8 lines
No EOL
188 B
TypeScript
import http from '@/api/http'
|
|
|
|
|
|
export default (uuid: string, nameservers: string[]) => {
|
|
return http.put(`/api/client/servers/${uuid}/settings/network`, {
|
|
nameservers
|
|
})
|
|
} |