forked from CEN-RA/Plugin_QGIS
11 lines
249 B
Python
11 lines
249 B
Python
# -*- coding: utf-8 -*-
|
|
__copyright__ = "Copyright 2021, 3Liz"
|
|
__license__ = "GPL version 3"
|
|
__email__ = "info@3liz.org"
|
|
|
|
|
|
def classFactory(iface):
|
|
_ = iface
|
|
from CenRa_AUTOMAP.CenRa_AutoMap import PgAutoMap
|
|
return PgAutoMap()
|