portrange.go 66 B

123456
  1. package net
  2. type PortRange interface {
  3. From() Port
  4. To() Port
  5. }