Files
tailscale-custom/cmd/tailscale/cli/serve.go
T
Brad Fitzpatrick b5ac9172fd cmd/tailscale/cli: move earlier shell test to its own files
(I should've done this to start with.)

Updates tailscale/corp#7515

Change-Id: I7fb88cf95772790fd415ecf28fc52bde95507641
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-11-12 14:07:27 -08:00

15 lines
375 B
Go

// Copyright (c) 2022 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.
package cli
import "tailscale.com/ipn"
func applyServeMutation(current *ipn.ServeConfig, command []string) (*ipn.ServeConfig, error) {
if len(command) == 0 {
return current, nil
}
panic("TODO")
}