Files
mayan-edms/mayan/apps/converter/__init__.py
Michael Price ee58303fbb Move transformations to the their own module.
Signed-off-by: Michael Price <loneviking72@gmail.com>
2018-04-01 20:18:54 -04:00

10 lines
270 B
Python

from __future__ import unicode_literals
from .runtime import converter_class # NOQA
from .transformations import ( # NOQA
BaseTransformation, TransformationResize, TransformationRotate,
TransformationZoom
)
default_app_config = 'converter.apps.ConverterApp'