mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-30 20:51:02 +00:00

Updates tailscale/corp#25278 Adds definitions for new CLI commands getting added in v1.80. Refactors some pre-existing CLI commands within the `configure` tree to clean up code. Signed-off-by: Andrea Gottardo <andrea@gottardo.me>
12 lines
330 B
Go
12 lines
330 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package cli
|
|
|
|
import "github.com/peterbourgon/ff/v3/ffcli"
|
|
|
|
var (
|
|
maybeSysExtCmd func() *ffcli.Command // non-nil only on macOS, see configure_apple.go
|
|
maybeVPNConfigCmd func() *ffcli.Command // non-nil only on macOS, see configure_apple.go
|
|
)
|