mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-07-19 21:08:40 +08:00
13 lines
266 B
Go
13 lines
266 B
Go
//go:build with_openconnect
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/endpoint"
|
|
"github.com/sagernet/sing-box/protocol/openconnect"
|
|
)
|
|
|
|
func registerOpenConnectEndpoint(registry *endpoint.Registry) {
|
|
openconnect.RegisterEndpoint(registry)
|
|
}
|