mirror of
https://github.com/tembo-pages/tembo-core.git
synced 2025-12-21 21:25:44 +00:00
13 lines
174 B
Python
13 lines
174 B
Python
"""
|
|
Entrypoint module.
|
|
|
|
Used when using `python -m tembo` to invoke the CLI.
|
|
"""
|
|
|
|
import sys
|
|
|
|
from tembo.cli.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|