blob: f479a7272f2a4b07a300b85483ea6a3e20970cd7 [file] [log] [blame]
Alexbab1efe2019-04-23 18:51:23 -05001from 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()