Coverage for tembo/__main__.py: 0%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1""" 

2Entrypoint module. 

3 

4Used when using `python -m tembo` to invoke the CLI. 

5""" 

6 

7import sys 

8 

9from tembo.cli.cli import main 

10 

11if __name__ == "__main__": 

12 sys.exit(main())