mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-16 23:26:26 +00:00
8 lines
210 B
Python
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)
|