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