mirror of
				https://github.com/1Panel-dev/KubePi.git
				synced 2025-11-01 02:52:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			346 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			346 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package project
 | |
| 
 | |
| import v1 "github.com/KubeOperator/ekko/internal/model/v1"
 | |
| 
 | |
| type Project struct {
 | |
| 	v1.BaseModel `storm:"inline"`
 | |
| 	v1.Metadata  `storm:"inline"`
 | |
| 	Users        []string `json:"users"`
 | |
| 	ClusterRef   string   `json:"clusterRef" storm:"index"`
 | |
| 	ProjectName  string   `json:"projectName"`
 | |
| 	Certificate  []byte   `json:"certificate"`
 | |
| }
 | 
