outbound.go 216 B

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