1# http://pyrocko.org - GPLv3 

2# 

3# The Pyrocko Developers, 21st Century 

4# ---|P------/S----------~Lg---------- 

5 

6import pkgutil 

7 

8command_modules = [] 

9 

10for _, modname, ispkg in pkgutil.iter_modules(__path__, __name__ + '.'): 

11 command_modules.append(__import__(modname, fromlist='dummy'))