v2ray-core/common/net/portrange.go
2015-11-21 21:43:40 +01:00

7 lines
70 B
Go

package net
type PortRange interface {
From() uint16
To() uint16
}