mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-06-28 19:51:33 +00:00
12 lines
279 B
Go
12 lines
279 B
Go
//go:build with_usbip && (linux || (darwin && cgo) || windows)
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/service"
|
|
"github.com/sagernet/sing-box/service/usbip"
|
|
)
|
|
|
|
func registerUSBIPServices(registry *service.Registry) {
|
|
usbip.RegisterService(registry)
|
|
}
|