diff options
Diffstat (limited to 'src/pgpmailman/commands/eml_key.py')
| -rw-r--r-- | src/pgpmailman/commands/eml_key.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pgpmailman/commands/eml_key.py b/src/pgpmailman/commands/eml_key.py new file mode 100644 index 0000000..6cb8469 --- /dev/null +++ b/src/pgpmailman/commands/eml_key.py @@ -0,0 +1,16 @@ +from mailman.interfaces.command import IEmailCommand +from public import public +from zope.interface import implementer + + +@public +@implementer(IEmailCommand) +class Key: + name = 'key' + argument_description = '<change|revoke|sign>' + short_description = '' + description = '' + + def process(mlist, msg, msgdata, arguments, results): + """See `IEmailCommand`.""" + pass |
