Files
sing-box-extended/include/mtproxy.go

13 lines
246 B
Go

//go:build with_mtproxy
package include
import (
"github.com/sagernet/sing-box/adapter/inbound"
"github.com/sagernet/sing-box/protocol/mtproxy"
)
func registerMTProxyInbound(registry *inbound.Registry) {
mtproxy.RegisterInbound(registry)
}