| 123456789101112131415161718192021222324252627282930313233343536 |
- # -*- coding: utf-8 -*-
- """
- /***************************************************************************
- Resource
- A QGIS plugin
- Resource
- Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
- -------------------
- begin : 2024-09-03
- copyright : (C) 2024 by siwei
- email : admin@siwei.com
- git sha : $Format:%H$
- ***************************************************************************/
- /***************************************************************************
- * *
- * 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. *
- * *
- ***************************************************************************/
- This script initializes the plugin, making it known to QGIS.
- """
- # noinspection PyPep8Naming
- def classFactory(iface): # pylint: disable=invalid-name
- """Load Resource class from file Resource.
- :param iface: A QGIS interface instance.
- :type iface: QgsInterface
- """
- #
- from .FTP import FTP
- return FTP(iface)
|