netbird/client/internal/routemanager/server_android.go

13 lines
236 B
Go
Raw Normal View History

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