28 lines
1.1 KiB
Python
Raw Normal View History

2021-05-21 11:31:09 +03:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
__init__.py
---------------------
Date : May 2021
Copyright : (C) 2021 by Alexander Bruy
Email : alexander dot bruy at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Alexander Bruy'
__date__ = 'May 2021'
__copyright__ = '(C) 2021, Alexander Bruy'
def classFactory(iface):
2021-05-21 17:30:23 +03:00
from sagaprovider.SagaProviderPlugin import SagaProviderPlugin
2021-05-21 11:31:09 +03:00
return SagaProviderPlugin()