Files
s-ui/core/register_naive_stub.go
T

14 lines
378 B
Go
Raw Normal View History

2026-05-10 06:41:44 +00:00
//go:build !with_naive_outbound
package core
import (
2026-05-10 14:56:03 +08:00
"github.com/admin8800/s-ui/logger"
2026-05-10 06:41:44 +00:00
"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")
}