Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from .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()