mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-24 02:25:24 +00:00
018b1d68f2
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
21 lines
405 B
Go
21 lines
405 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"tailscale.com/ipn/ipnstate"
|
|
)
|
|
|
|
type TailscaleClient interface {
|
|
Hostname() string
|
|
Shutdown() error
|
|
Version() string
|
|
Execute(command []string) (string, error)
|
|
Up(loginServer, authKey string) error
|
|
IPs() ([]netip.Addr, error)
|
|
FQDN() (string, error)
|
|
Status() (*ipnstate.Status, error)
|
|
WaitForPeers(expected int) error
|
|
Ping(hostnameOrIP string) error
|
|
}
|