mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-11 17:47:20 +10:00
13 lines
260 B
Go
13 lines
260 B
Go
//go:build with_cloudflared
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/inbound"
|
|
"github.com/sagernet/sing-box/protocol/cloudflare"
|
|
)
|
|
|
|
func registerCloudflaredInbound(registry *inbound.Registry) {
|
|
cloudflare.RegisterInbound(registry)
|
|
}
|