mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 01:51:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			357 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 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)
 | 
						|
}
 |