Update Tailscale interface with new Execute signature

This commit is contained in:
Juan Font Alonso
2022-11-03 17:00:23 +01:00
parent 181f1eeb4f
commit ec90e9d716
2 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ type TailscaleClient interface {
Hostname() string
Shutdown() error
Version() string
Execute(command []string) (string, error)
Execute(command []string) (string, string, error)
Up(loginServer, authKey string) error
UpWithLoginURL(loginServer string) (*url.URL, error)
IPs() ([]netip.Addr, error)