summaryrefslogtreecommitdiff
path: root/vendor/Twisted-10.0.0/twisted/plugins/twisted_telnet.py
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/Twisted-10.0.0/twisted/plugins/twisted_telnet.py')
-rw-r--r--vendor/Twisted-10.0.0/twisted/plugins/twisted_telnet.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/Twisted-10.0.0/twisted/plugins/twisted_telnet.py b/vendor/Twisted-10.0.0/twisted/plugins/twisted_telnet.py
new file mode 100644
index 0000000000..62be6027e7
--- /dev/null
+++ b/vendor/Twisted-10.0.0/twisted/plugins/twisted_telnet.py
@@ -0,0 +1,10 @@
+# Copyright (c) 2001-2008 Twisted Matrix Laboratories.
+# See LICENSE for details.
+
+from twisted.application.service import ServiceMaker
+
+TwistedTelnet = ServiceMaker(
+ "Twisted Telnet Shell Server",
+ "twisted.tap.telnet",
+ "A simple, telnet-based remote debugging service.",
+ "telnet")