mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-11-01 03:37:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package constant
 | |
| 
 | |
| const (
 | |
| 	StatusRunning   = "Running"
 | |
| 	StatusDone      = "Done"
 | |
| 	StatusStoped    = "Stoped"
 | |
| 	StatusWaiting   = "Waiting"
 | |
| 	StatusSuccess   = "Success"
 | |
| 	StatusFailed    = "Failed"
 | |
| 	StatusUploading = "Uploading"
 | |
| 	StatusEnable    = "Enable"
 | |
| 	StatusDisable   = "Disable"
 | |
| 	StatusNone      = "None"
 | |
| 
 | |
| 	OrderDesc = "descending"
 | |
| 	OrderAsc  = "ascending"
 | |
| )
 |