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
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
1"""
2Entrypoint module.
4Used when using `python -m tembo` to invoke the CLI.
5"""
7import sys
9from tembo.cli.cli import main
11if __name__ == "__main__":
12 sys.exit(main())