forked from loafle/openapi-generator-original
8 lines
251 B
Python
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())
|