mirror of
				https://github.com/gravitl/netmaker.git
				synced 2025-10-31 16:43:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			285 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			285 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package models
 | |
| 
 | |
| // AccessToken - token used to access netmaker
 | |
| type AccessToken struct {
 | |
| 	APIConnString string `json:"apiconnstring"`
 | |
| 	ClientConfig
 | |
| }
 | |
| 
 | |
| // ClientConfig - the config of the client
 | |
| type ClientConfig struct {
 | |
| 	Network string `json:"network"`
 | |
| 	Key     string `json:"key"`
 | |
| }
 |