mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
12 lines
247 B
Go
12 lines
247 B
Go
//go:build windows && with_gvisor
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/inbound"
|
|
"github.com/sagernet/sing-box/protocol/ndis"
|
|
)
|
|
|
|
func registerNDISInbound(registry *inbound.Registry) {
|
|
ndis.RegisterInbound(registry)
|
|
}
|