mirror of
https://github.com/tembo-pages/tembo-core.git
synced 2025-12-22 05:35:43 +00:00
feat: initial commit
This commit is contained in:
12
tembo/__main__.py
Normal file
12
tembo/__main__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
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())
|
||||
Reference in New Issue
Block a user