13 lines
398 B
Python
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())
|