mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
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")
|
|
}
|