mirror of
https://github.com/slackhq/nebula.git
synced 2024-11-10 17:24:37 +08:00
10 lines
259 B
Go
10 lines
259 B
Go
package cidr
|
|
|
|
import "net"
|
|
|
|
// Parse is a convenience function that returns only the IPNet
|
|
// This function ignores errors since it is primarily a test helper, the result could be nil
|
|
func Parse(s string) *net.IPNet {
|
|
_, c, _ := net.ParseCIDR(s)
|
|
return c
|
|
}
|