mirror of
				https://github.com/walkxcode/dashboard-icons.git
				synced 2025-10-27 13:39:03 +08:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			250 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			250 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | import json | ||
|  | 
 | ||
|  | 
 | ||
|  | def load_metadata(icon_name: str) -> dict: | ||
|  |     try: | ||
|  |         with open(f"meta/{icon_name}.json", "r") as f: | ||
|  |             return json.load(f) | ||
|  |     except FileNotFoundError: | ||
|  |             raise ValueError(f"Icon '{icon_name}' does not exist") |