1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 16:26:02 -04:00
v2fly/common/net/portrange.go

7 lines
66 B
Go
Raw Normal View History

2015-11-21 15:43:40 -05:00
package net
type PortRange interface {
2015-12-02 06:47:54 -05:00
From() Port
To() Port
2015-11-21 15:43:40 -05:00
}