Alex | 3bc95f6 | 2020-03-05 17:00:04 -0600 | [diff] [blame] | 1 | from .command import cli_command |
Alex | 265f45e | 2019-04-23 18:51:23 -0500 | [diff] [blame] | 2 | |
3 | |||||
Alex | bab1efe | 2019-04-23 18:51:23 -0500 | [diff] [blame] | 4 | def entrypoint(): |
5 | cli_command( | ||||
6 | "# Mirantis Cloud Network checker", | ||||
7 | 'network' | ||||
Alex | 265f45e | 2019-04-23 18:51:23 -0500 | [diff] [blame] | 8 | ) |
9 | |||||
Alex Savatieiev | c905571 | 2019-03-01 14:43:56 -0600 | [diff] [blame] | 10 | |
11 | if __name__ == '__main__': | ||||
Alex | bab1efe | 2019-04-23 18:51:23 -0500 | [diff] [blame] | 12 | entrypoint() |