mirror of
https://github.com/AdguardTeam/AdGuardDNS.git
synced 2025-02-20 11:23:36 +08:00
10 lines
190 B
Go
10 lines
190 B
Go
package agdnet_test
|
|
|
|
import "net/netip"
|
|
|
|
// Common subnets for tests.
|
|
var (
|
|
testSubnetIPv4 = netip.MustParsePrefix("1.2.3.0/24")
|
|
testSubnetIPv6 = netip.MustParsePrefix("1234:5678::/64")
|
|
)
|