mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-14 11:37:23 +08:00
2c0488da0b
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
16 lines
419 B
Go
16 lines
419 B
Go
package integration
|
|
|
|
import (
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
)
|
|
|
|
type ControlServer interface {
|
|
Shutdown() error
|
|
Execute(command []string) (string, error)
|
|
GetHealthEndpoint() string
|
|
GetEndpoint() string
|
|
WaitForReady() error
|
|
CreateNamespace(namespace string) error
|
|
CreateAuthKey(namespace string) (*v1.PreAuthKey, error)
|
|
ListMachinesInNamespace(namespace string) ([]*v1.Machine, error)
|
|
}
|