mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
Since these ones are either ctrld itself or direct listener that ctrld is being upstream for, which makes health check query always succeed.
10 lines
182 B
Go
10 lines
182 B
Go
//go:build unix
|
|
|
|
package ctrld
|
|
|
|
import "github.com/Control-D-Inc/ctrld/internal/resolvconffile"
|
|
|
|
func nameserversFromResolvconf() []string {
|
|
return resolvconffile.NameServers("")
|
|
}
|