mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2026-03-14 21:59:13 +00:00
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())
|