10 lines
242 B
Go
10 lines
242 B
Go
//go:build !linux && !darwin
|
|
|
|
package libbox
|
|
|
|
import E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
func NewBridgeService(options *BridgeOptions) (BridgeSession, error) {
|
|
return nil, E.New("bridge service not supported on this platform")
|
|
}
|