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

14 lines
364 B
Go

//go:build !with_naive_outbound
package core
import (
"github.com/alireza0/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")
}