Files
s-ui/core/register_naive_stub.go
T
2026-05-10 14:56:03 +08:00

14 lines
378 B
Go

//go:build !with_naive_outbound
package core
import (
"github.com/admin8800/s-ui/logger"
"github.com/sagernet/sing-box/adapter/outbound"
)
func registerNaiveOutbound(registry *outbound.Registry) {
// naive outbound is disabled when built without with_naive_outbound tag
logger.Error("naive outbound is disabled when built without with_naive_outbound tag")
}