mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-22 23:38:31 +00:00

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