mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			189 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			189 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package util
 | |
| 
 | |
| // MapContainsKey is fairly self explanatory
 | |
| func MapContainsKey(dict map[string]interface{}, key string) bool {
 | |
| 	if _, ok := dict[key]; ok {
 | |
| 		return true
 | |
| 	}
 | |
| 	return false
 | |
| }
 |