diff options
| author | Barry Warsaw | 2016-03-25 11:01:46 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-03-25 11:01:46 -0400 |
| commit | 7fd9e5ab09b0da347da0607b47d2d3838bd80f0c (patch) | |
| tree | b150f85e5fc482f45e973a233b5184d3ca4b78a7 /src/mailman/model/bounce.py | |
| parent | 71ebe367a52316811f570d09f2213c192a47973f (diff) | |
| download | mailman-7fd9e5ab09b0da347da0607b47d2d3838bd80f0c.tar.gz mailman-7fd9e5ab09b0da347da0607b47d2d3838bd80f0c.tar.zst mailman-7fd9e5ab09b0da347da0607b47d2d3838bd80f0c.zip | |
Diffstat (limited to 'src/mailman/model/bounce.py')
| -rw-r--r-- | src/mailman/model/bounce.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mailman/model/bounce.py b/src/mailman/model/bounce.py index 544907ad5..b7f217048 100644 --- a/src/mailman/model/bounce.py +++ b/src/mailman/model/bounce.py @@ -17,6 +17,7 @@ """Bounce support.""" +from mailman import public from mailman.database.model import Model from mailman.database.transaction import dbconnection from mailman.database.types import Enum @@ -27,6 +28,7 @@ from sqlalchemy import Boolean, Column, DateTime, Integer, Unicode from zope.interface import implementer +@public @implementer(IBounceEvent) class BounceEvent(Model): """See `IBounceEvent`.""" @@ -51,6 +53,7 @@ class BounceEvent(Model): self.processed = False +@public @implementer(IBounceProcessor) class BounceProcessor: """See `IBounceProcessor`.""" |
