blob: c44e5bc957ed4f1e25e4647d0fc4e5639e7eb841 [file] [log] [blame]
Alexbab1efe2019-04-23 18:51:23 -05001from command import cli_command
2
3
4def entrypoint():
5 cli_command(
6 "# Mirantis Cloud Package checker",
7 'packages'
8 )
9
10
11if __name__ == '__main__':
12 entrypoint()