mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 04:42:22 +08:00
13 lines
258 B
Go
13 lines
258 B
Go
//go:build with_wireguard
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/outbound"
|
|
"github.com/sagernet/sing-box/protocol/wireguard"
|
|
)
|
|
|
|
func registerWireGuardOutbound(registry *outbound.Registry) {
|
|
wireguard.RegisterOutbound(registry)
|
|
}
|