Files
s-ui/core/register_naive.go
T
admin8800 3eb70ee9ed add
2026-05-10 06:41:44 +00:00

13 lines
260 B
Go

//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)
}