blob: b1319a1bc082817159f1118d1bb0f65fe5846339 [file] [log] [blame]
Alex3bc95f62020-03-05 17:00:04 -06001from .command import cli_command
Alexbab1efe2019-04-23 18:51:23 -05002
3
4def entrypoint():
5 cli_command(
6 "# Mirantis Cloud Package checker",
7 'packages'
8 )
9
10
11if __name__ == '__main__':
12 entrypoint()