mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-17 15:46:26 +00:00
14 lines
215 B
Python
14 lines
215 B
Python
from . import base, core, sif, svg
|
|
from .base import importers
|
|
|
|
__all__ = [
|
|
"base", "core", "sif", "svg",
|
|
"importers",
|
|
]
|
|
|
|
try:
|
|
from . import raster
|
|
__all__ += ["raster"]
|
|
except ImportError:
|
|
pass
|