| 12345678910111213141516171819 | package configtype Type stringconst (	TypeInbound  = Type("inbound")	TypeOutbound = Type("outbound"))type ConnectionConfig interface {	Protocol() string	Settings(configType Type) interface{}}type PointConfig interface {	Port() uint16	InboundConfig() ConnectionConfig	OutboundConfig() ConnectionConfig}
 |