blob: 1bc0d66ea27d9f0fdaa8500d9d0560a6a4145631 [file] [log] [blame]
Alex0989ecf2022-03-29 13:43:21 -05001# Author: Alex Savatieiev (osavatieiev@mirantis.com; a.savex@gmail.com)
2# Copyright 2019-2022 Mirantis, Inc.
Alex3bc95f62020-03-05 17:00:04 -06003from .command import cli_command
Alex265f45e2019-04-23 18:51:23 -05004
5
Alexbab1efe2019-04-23 18:51:23 -05006def entrypoint():
7 cli_command(
8 '# Mirantis Cloud Reclass comparer"',
Alexcf91b182019-05-31 11:57:07 -05009 'reclass'
Alex265f45e2019-04-23 18:51:23 -050010 )
Alex265f45e2019-04-23 18:51:23 -050011
Alex Savatieievc9055712019-03-01 14:43:56 -060012
13if __name__ == "__main__":
Alexbab1efe2019-04-23 18:51:23 -050014 entrypoint()