mirror of
				https://github.com/veops/cmdb.git
				synced 2025-10-31 02:56:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			197 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			197 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding:utf-8 -*-
 | |
| 
 | |
| from api.lib.utils import BaseEnum
 | |
| 
 | |
| ACL_QUEUE = "acl_async"
 | |
| 
 | |
| 
 | |
| class OperateType(BaseEnum):
 | |
|     LOGIN = "0"
 | |
|     READ = "1"
 | |
|     UPDATE = "2"
 | |
|     CREATE = "3"
 | |
|     DELETE = "4"
 |