diff --git a/ucloud-setup.py b/ucloud-setup.py index ea8a9c7..446db2c 100644 --- a/ucloud-setup.py +++ b/ucloud-setup.py @@ -4,7 +4,7 @@ from app.scheduler import scheduler from app.host import host from app.image import image from app.file import file_scan - +from app.ceph import ceph @click.group() def entry_point(): @@ -16,6 +16,7 @@ entry_point.add_command(scheduler) entry_point.add_command(host) entry_point.add_command(image) entry_point.add_command(file_scan) +entry_point.add_command(ceph) if __name__ == "__main__":