2026-04-29 22:11:30 +03:00
|
|
|
//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)
|
|
|
|
|
}
|