mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-31 08:01:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			475 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			475 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)
 | |
| 	GetCert() []byte
 | |
| 	GetHostname() string
 | |
| 	GetIP() string
 | |
| }
 |