9 lines
150 B
Go
9 lines
150 B
Go
|
//go:build !(windows || linux)
|
||
|
// +build !windows,!linux
|
||
|
|
||
|
package aghnet
|
||
|
|
||
|
func defaultHostsPaths() (paths []string) {
|
||
|
return []string{"etc/hosts"}
|
||
|
}
|