forked from CEN-RA/Plugin_QGIS
12 lines
211 B
Python
12 lines
211 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
def classFactory(iface):
|
|
_ = iface
|
|
from CenRa_POSTGIS.CenRa_Postgis import PgPostgis
|
|
return PgPostgis()
|
|
|
|
"""
|
|
from .cenra import CenRa
|
|
return CenRa(iface)
|
|
"""
|