mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 03:07:34 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package constant
 | |
| 
 | |
| const (
 | |
| 	ResourceLocal    = "local"
 | |
| 	ResourceAppstore = "appstore"
 | |
| 
 | |
| 	RuntimeNormal     = "normal"
 | |
| 	RuntimeError      = "error"
 | |
| 	RuntimeBuildIng   = "building"
 | |
| 	RuntimeStarting   = "starting"
 | |
| 	RuntimeRunning    = "running"
 | |
| 	RuntimeReCreating = "recreating"
 | |
| 	RuntimeStopped    = "stopped"
 | |
| 	RuntimeUnhealthy  = "unhealthy"
 | |
| 	RuntimeCreating   = "creating"
 | |
| 
 | |
| 	RuntimePHP  = "php"
 | |
| 	RuntimeNode = "node"
 | |
| 
 | |
| 	RuntimeProxyUnix = "unix"
 | |
| 	RuntimeProxyTcp  = "tcp"
 | |
| 
 | |
| 	RuntimeUp      = "up"
 | |
| 	RuntimeDown    = "down"
 | |
| 	RuntimeRestart = "restart"
 | |
| 
 | |
| 	RuntimeInstall   = "install"
 | |
| 	RuntimeUninstall = "uninstall"
 | |
| 	RuntimeUpdate    = "update"
 | |
| 
 | |
| 	RuntimeNpm  = "npm"
 | |
| 	RuntimeYarn = "yarn"
 | |
| )
 |