mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
308b9e78a1
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
13 lines
357 B
Go
13 lines
357 B
Go
package integration
|
|
|
|
import v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
|
|
type ControlServer interface {
|
|
Shutdown() error
|
|
GetHealthEndpoint() string
|
|
GetEndpoint() string
|
|
WaitForReady() error
|
|
CreateNamespace(namespace string) error
|
|
CreateAuthKey(namespace string) (*v1.PreAuthKey, error)
|
|
ListNodes(namespace string) ([]*v1.Machine, error)
|
|
}
|