2020-02-17 17:00:38 +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.
|
|
|
|
|
2020-08-12 22:03:34 +01:00
|
|
|
// +build !linux,!freebsd,!windows android
|
2020-02-17 17:00:38 +00:00
|
|
|
|
|
|
|
package monitor
|
|
|
|
|
2020-07-07 00:36:57 +01:00
|
|
|
import "tailscale.com/types/logger"
|
|
|
|
|
|
|
|
func newOSMon(logger.Logf) (osMon, error) { return nil, nil }
|