2020-08-12 19:48:34 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-03-08 20:44:46 +00:00
|
|
|
//go:build !linux && !windows && !darwin && !freebsd
|
|
|
|
// +build !linux,!windows,!darwin,!freebsd
|
2020-08-12 19:48:34 +00:00
|
|
|
|
|
|
|
package interfaces
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
var errTODO = errors.New("TODO")
|
|
|
|
|
2021-12-29 18:37:33 +00:00
|
|
|
func defaultRoute() (DefaultRouteDetails, error) {
|
|
|
|
return DefaultRouteDetails{}, errTODO
|
2020-08-12 19:48:34 +00:00
|
|
|
}
|