Adding support of python-k8client.
Change-Id: I793afa000f1173d7bd19da18d6204879f556f5d2 Partially-Implements: blueprint python-k8sclient
This commit is contained in:
9
magnum/common/pythonk8sclient/client/models/__init__.py
Normal file
9
magnum/common/pythonk8sclient/client/models/__init__.py
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python
|
||||
"""Add all of the modules in the current directory to __all__"""
|
||||
import os
|
||||
|
||||
__all__ = []
|
||||
|
||||
for module in os.listdir(os.path.dirname(__file__)):
|
||||
if module != '__init__.py' and module[-3:] == '.py':
|
||||
__all__.append(module[:-3])
|
||||
Reference in New Issue
Block a user