netbird/client/internal/routemanager/server_android.go
2023-10-05 20:15:44 +02:00

15 lines
256 B
Go

//go:build android
package routemanager
import (
"context"
"fmt"
"github.com/netbirdio/netbird/iface"
)
func newServerRouter(context.Context, *iface.WGIface) (serverRouter, error) {
return nil, fmt.Errorf("server route not supported on this os")
}