mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
04c2c5bd80
It was pretty ill-defined before and mostly for logging. But I wanted to start depending on it, so define what it is and make Windows match the other operating systems, without losing the log output we had before. (and add tests for that) Change-Id: I0fbbba1cfc67a265d09dd6cb738b73f0f6005247 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
17 lines
411 B
Go
17 lines
411 B
Go
// 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.
|
|
|
|
//go:build !linux && !windows && !darwin
|
|
// +build !linux,!windows,!darwin
|
|
|
|
package interfaces
|
|
|
|
import "errors"
|
|
|
|
var errTODO = errors.New("TODO")
|
|
|
|
func defaultRoute() (DefaultRouteDetails, error) {
|
|
return DefaultRouteDetails{}, errTODO
|
|
}
|