summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/cephadm/__init__.py
blob: 597d883f7ae399244bae5bfa14719c850c165f1e (plain)
1
2
3
4
5
6
7
8
9
10
from .module import CephadmOrchestrator

__all__ = [
    "CephadmOrchestrator",
]

import os
if 'UNITTEST' in os.environ:
    import tests
    __all__.append(tests.__name__)