Files
2026-03-01 21:36:54 +08:00

8 lines
210 B
Python

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)