mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-14 04:38:28 +10:00
13 lines
271 B
Go
13 lines
271 B
Go
//go:build with_cloudflare_tunnel
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/inbound"
|
|
"github.com/sagernet/sing-box/protocol/cloudflare"
|
|
)
|
|
|
|
func registerCloudflareTunnelInbound(registry *inbound.Registry) {
|
|
cloudflare.RegisterInbound(registry)
|
|
}
|