Files

8 lines
210 B
Python
Raw Permalink Normal View History

2026-03-01 21:36:54 +08:00
from .base import importer
from ..parsers.tgs import parse_tgs
@importer("Lottie JSON / Telegram Sticker", ["json", "tgs"], slug="lottie")
def import_tgs(file, *a, **kw):
return parse_tgs(file, *a, **kw)