mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
12 lines
190 B
Go
12 lines
190 B
Go
//go:build !js && !windows
|
|
|
|
package ctrld
|
|
|
|
import (
|
|
"github.com/Control-D-Inc/ctrld/internal/resolvconffile"
|
|
)
|
|
|
|
func nameservers() []string {
|
|
return resolvconffile.NameServersWithPort()
|
|
}
|