diff options
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`.""" |
