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