mirror of
				https://github.com/lzh-1625/go_process_manager.git
				synced 2025-10-31 03:16:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			306 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			306 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package constants
 | |
| 
 | |
| type OprPermission string
 | |
| 
 | |
| const (
 | |
| 	OPERATION_START          OprPermission = "Start"
 | |
| 	OPERATION_STOP           OprPermission = "Stop"
 | |
| 	OPERATION_TERMINAL       OprPermission = "Terminal"
 | |
| 	OPERATION_TERMINAL_WRITE OprPermission = "Write"
 | |
| 	OPERATION_LOG            OprPermission = "Log"
 | |
| )
 | 
