blob: 5c5a4e239a3f76630f2daaac4de4ee901fa69199 [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 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()