mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-08-07 14:25:17 +03:00
18 lines
376 B
Go
18 lines
376 B
Go
//go:build with_call
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/inbound"
|
|
"github.com/sagernet/sing-box/adapter/outbound"
|
|
"github.com/sagernet/sing-box/protocol/call"
|
|
)
|
|
|
|
func registerCallInbound(registry *inbound.Registry) {
|
|
call.RegisterInbound(registry)
|
|
}
|
|
|
|
func registerCallOutbound(registry *outbound.Registry) {
|
|
call.RegisterOutbound(registry)
|
|
}
|