portrange.go 70 B

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