outbound.go 196 B

1234567891011121314
  1. package config
  2. import (
  3. v2net "github.com/v2ray/v2ray-core/common/net"
  4. )
  5. type Receiver struct {
  6. Address v2net.Address
  7. Accounts []User
  8. }
  9. type Outbound interface {
  10. Receivers() []*Receiver
  11. }