blob: 474a9c7cde48616995b90eb82e1c91ba855b6d48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from twisted.application.service import ServiceMaker
TwistedFTP = ServiceMaker(
"Twisted FTP",
"twisted.tap.ftp",
"An FTP server.",
"ftp")
|