Files
openapi-generator/conf/python/structure/__init__.py
2011-11-11 01:06:12 -08:00

8 lines
251 B
Python

#!/usr/bin/env python
"""Load all of the modules in the models directory."""
import os
for module in os.listdir(os.path.dirname(__file__)):
if module != '__init__.py' and module[-3:] == '.py':
__import__(module[:-3], locals(), globals())