forked from LeenkxTeam/LNXSDK
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			167 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			167 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import glob
 | |
| from os.path import dirname, basename, isfile
 | |
| 
 | |
| modules = glob.glob(dirname(__file__) + "/*.py")
 | |
| __all__ = [basename(f)[:-3] for f in modules if isfile(f)]
 |