make TailscaleClient interface
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
9c16d5e511
commit
8c4744acd9
|
@ -0,0 +1,18 @@
|
|||
package integration
|
||||
|
||||
import (
|
||||
"net/netip"
|
||||
|
||||
"tailscale.com/ipn/ipnstate"
|
||||
)
|
||||
|
||||
type TailscaleClient interface {
|
||||
Hostname() string
|
||||
Shutdown() error
|
||||
Version() string
|
||||
Up(loginServer, authKey string) error
|
||||
IPs() ([]netip.Addr, error)
|
||||
Status() (*ipnstate.Status, error)
|
||||
WaitForPeers(expected int) error
|
||||
Ping(ip netip.Addr) error
|
||||
}
|
Loading…
Reference in New Issue