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