sing-box/include/wireguard.go

13 lines
258 B
Go
Raw Normal View History

2024-11-02 00:39:02 +08:00
//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)
}