blob: 6d3059e55562124ada60f61b4f29a32416f6c9e6 [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 Network checker",
7 'network'
Alex265f45e2019-04-23 18:51:23 -05008 )
9
Alex Savatieievc9055712019-03-01 14:43:56 -060010
11if __name__ == '__main__':
Alexbab1efe2019-04-23 18:51:23 -050012 entrypoint()