7 lines
		
	
	
		
			154 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			154 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import toml
 | 
						|
import os
 | 
						|
 | 
						|
config_file = os.environ.get('MORTAL_CFG', 'config.toml')
 | 
						|
with open(config_file, encoding='utf-8') as f:
 | 
						|
    config = toml.load(f)
 |