naive_outbound.go 251 B

123456789101112
  1. //go:build with_naive_outbound
  2. package include
  3. import (
  4. "github.com/sagernet/sing-box/adapter/outbound"
  5. "github.com/sagernet/sing-box/protocol/naive"
  6. )
  7. func registerNaiveOutbound(registry *outbound.Registry) {
  8. naive.RegisterOutbound(registry)
  9. }