mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 11:21:04 +01:00
15 lines
256 B
Go
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")
|
|
}
|