fix(cli): add __main__.py for python -m gitea_dashboard

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
sylvain
2026-03-10 19:08:25 +01:00
parent 6fa8990cae
commit b15ba9eea8

View File

@@ -0,0 +1,5 @@
"""Allow running with python -m gitea_dashboard."""
from gitea_dashboard.cli import main
main()