mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 16:41:30 +00:00
13 lines
215 B
Go
13 lines
215 B
Go
//go:build !linux && !windows
|
|
|
|
package dialer
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter"
|
|
"github.com/sagernet/sing/common/control"
|
|
)
|
|
|
|
func BindToInterface(router adapter.Router) control.Func {
|
|
return nil
|
|
}
|