Files
Bolt-Pet/bolt_pet/__main__.py
T
themajesticmagician 80bef6f524 Upload
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-23 06:25:41 -06:00

9 lines
123 B
Python

"""Entry point: python -m bolt_pet"""
import sys
from .ui.app import run
if __name__ == "__main__":
sys.exit(run())