]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/cephadm/__init__.py
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / cephadm / __init__.py
CommitLineData
f67539c2
TL
1from .module import CephadmOrchestrator
2
3__all__ = [
4 "CephadmOrchestrator",
5]
9f95a23c 6
f67539c2 7import os
9f95a23c
TL
8if 'UNITTEST' in os.environ:
9 import tests
f67539c2 10 __all__.append(tests.__name__)