config.go 203 B

123456789101112
  1. package core
  2. type ConnectionConfig interface {
  3. Protocol() string
  4. Content() []byte
  5. }
  6. type PointConfig interface {
  7. Port() uint16
  8. InboundConfig() ConnectionConfig
  9. OutboundConfig() ConnectionConfig
  10. }