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

1""" 

2Implements command line ``python -m aftercovid <command> <args>``. 

3""" 

4import fire 

5from aftercovid import check 

6 

7 

8if __name__ == "__main__": # pragma: no cover 

9 fire.Fire({ 

10 'check': check, 

11 })