mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
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"}
|
||
|
}
|