sing-box/adapter/outbound.go
2024-11-09 12:35:43 +08:00

16 lines
264 B
Go

package adapter
import (
N "github.com/sagernet/sing/common/network"
)
// Note: for proxy protocols, outbound creates early connections by default.
type Outbound interface {
Type() string
Tag() string
Network() []string
Dependencies() []string
N.Dialer
}