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