Files
2026-07-09 11:20:32 +08:00

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")
}