13 lines
260 B
Go
13 lines
260 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)
|
||
|
|
}
|