Files
s-ui/core/register_naive.go
T

13 lines
260 B
Go
Raw Normal View History

2026-05-10 06:41:44 +00:00
//go:build with_naive_outbound
package core
import (
"github.com/sagernet/sing-box/adapter/outbound"
"github.com/sagernet/sing-box/protocol/naive"
)
func registerNaiveOutbound(registry *outbound.Registry) {
naive.RegisterOutbound(registry)
}