blob: 652f00a4810c276738fb006cd1f5c20fcd630e36 [file] [log] [blame]
Alex3bc95f62020-03-05 17:00:04 -06001from .command import cli_command
Alex265f45e2019-04-23 18:51:23 -05002
3
Alexbab1efe2019-04-23 18:51:23 -05004def entrypoint():
5 cli_command(
6 '# Mirantis Cloud Reclass comparer"',
Alexcf91b182019-05-31 11:57:07 -05007 'reclass'
Alex265f45e2019-04-23 18:51:23 -05008 )
Alex265f45e2019-04-23 18:51:23 -05009
Alex Savatieievc9055712019-03-01 14:43:56 -060010
11if __name__ == "__main__":
Alexbab1efe2019-04-23 18:51:23 -050012 entrypoint()