mirror of
				https://github.com/lzh-1625/go_process_manager.git
				synced 2025-10-31 19:32:43 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			102 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			102 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package constants
 | |
| 
 | |
| type Role int
 | |
| 
 | |
| const (
 | |
| 	ROLE_ROOT Role = iota
 | |
| 	ROLE_ADMIN
 | |
| 	ROLE_USER
 | |
| 	ROLE_GUEST
 | |
| )
 | 
