forked from CEN-RA/Plugin_QGIS
11 lines
287 B
Python
11 lines
287 B
Python
__copyright__ = "Copyright 2021, 3Liz"
|
|
__license__ = "GPL version 3"
|
|
__email__ = "info@3liz.org"
|
|
|
|
|
|
# noinspection PyPep8Naming
|
|
def classFactory(iface): # pylint: disable=invalid-name
|
|
_ = iface
|
|
from CenRa_PAGERENDER.CenRa_PageRender import PgPageRender
|
|
return PgPageRender()
|