[kepi] ability to use subkeys. Fixes #6051
[gajim.git] / src / plugins / __init__.py
blob0d5d18fda2885d02b94e8a64b898491f791f3320
1 # -*- coding: utf-8 -*-
3 ## This file is part of Gajim.
4 ##
5 ## Gajim is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published
7 ## by the Free Software Foundation; version 3 only.
8 ##
9 ## Gajim is distributed in the hope that it will be useful,
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ## GNU General Public License for more details.
14 ## You should have received a copy of the GNU General Public License
15 ## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
18 '''
19 Main file of plugins package.
21 :author: Mateusz Biliński <mateusz@bilinski.it>
22 :since: 05/30/2008
23 :copyright: Copyright (2008) Mateusz Biliński <mateusz@bilinski.it>
24 :license: GPL
25 '''
27 from pluginmanager import PluginManager
28 from plugin import GajimPlugin
30 __all__ = ['PluginManager', 'GajimPlugin']