Files
s-ui/core/register_naive.go
T
Alireza Ahmadi c70f0f97b3 Sing-Box v1.13.0
2026-03-05 00:48:32 +01:00

13 lines
248 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)
}