mirror of
https://github.com/rancher/os.git
synced 2025-06-23 05:27:03 +00:00
10 lines
98 B
Go
10 lines
98 B
Go
|
// +build dnspatch
|
||
|
|
||
|
package network
|
||
|
|
||
|
import "net"
|
||
|
|
||
|
func updateDNSCache() {
|
||
|
net.UpdateDnsConf()
|
||
|
}
|