blob: 869b0cb5f0775bf21befe56e69c204b1a1e9835c (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Copyright (c) 2001-2008 Twisted Matrix Laboratories.
# See LICENSE for details.
from twisted.application.service import ServiceMaker
TwistedMail = ServiceMaker(
"Twisted Mail",
"twisted.mail.tap",
"An email service",
"mail")
|