mirror of
https://github.com/tailscale/tailscale.git
synced 2025-06-30 12:08:46 +00:00

Change-Id: Idcc360abdcc723fcf5ccef9d539056c68b7aa2b2 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
14 lines
254 B
Go
14 lines
254 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !ts_omit_derpserver && (!linux || android)
|
|
|
|
package derp
|
|
|
|
import "context"
|
|
|
|
func (c *sclient) startStatsLoop(ctx context.Context) {
|
|
// Nothing to do
|
|
return
|
|
}
|