80bef6f524
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
9 lines
123 B
Python
9 lines
123 B
Python
"""Entry point: python -m bolt_pet"""
|
|
|
|
import sys
|
|
|
|
from .ui.app import run
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run())
|