mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-11-01 03:37:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			358 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			358 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package model
 | |
| 
 | |
| type ImageRepo struct {
 | |
| 	BaseModel
 | |
| 
 | |
| 	Name        string `gorm:"not null" json:"name"`
 | |
| 	DownloadUrl string `json:"downloadUrl"`
 | |
| 	Protocol    string `json:"protocol"`
 | |
| 	Username    string `json:"username"`
 | |
| 	Password    string `json:"password"`
 | |
| 	Auth        bool   `json:"auth"`
 | |
| 
 | |
| 	Status  string `json:"status"`
 | |
| 	Message string `json:"message"`
 | |
| }
 |