diff options
| author | J08nY | 2017-06-01 15:46:48 +0200 |
|---|---|---|
| committer | J08nY | 2017-08-07 17:39:07 +0200 |
| commit | 0d4f53b51892866b5cc85ace229b23f4b9bac896 (patch) | |
| tree | 5394af7e3d9e8895babf93cf4af19480d14f53dd /src/mailman/interfaces/plugin.py | |
| parent | 38a86adcdb78c1944c26a5ab8deddff619b33bcf (diff) | |
| download | mailman-0d4f53b51892866b5cc85ace229b23f4b9bac896.tar.gz mailman-0d4f53b51892866b5cc85ace229b23f4b9bac896.tar.zst mailman-0d4f53b51892866b5cc85ace229b23f4b9bac896.zip | |
Diffstat (limited to 'src/mailman/interfaces/plugin.py')
| -rw-r--r-- | src/mailman/interfaces/plugin.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mailman/interfaces/plugin.py b/src/mailman/interfaces/plugin.py new file mode 100644 index 000000000..9e226824f --- /dev/null +++ b/src/mailman/interfaces/plugin.py @@ -0,0 +1,32 @@ +# Copyright (C) 2007-2017 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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 3 of the License, or (at your option) +# any later version. +# +# GNU Mailman is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + +"""Interfaces for plugins.""" + +from public import public +from zope.interface import Interface + + +@public +class IPlugin(Interface): + """A plugin providing components and hooks.""" + + def pre_hook(): + """A plugin hook called in the first initialization step. Before DB.""" + + def post_hook(): + """A plugin hook called in the second initialization step. After DB.""" |
