Files
2026-07-27 15:16:01 +02:00

13 lines
398 B
Python

#!/usr/bin/env python3
"""Backwards-compatible entry point.
Kept so ``python app.py`` keeps working. The real implementation lives in the
``sticker_downloader`` package; prefer ``python -m sticker_downloader`` or the
``tg-stickers`` console script, both of which also accept command-line flags.
"""
from sticker_downloader.cli import main
if __name__ == "__main__":
raise SystemExit(main())