twisted_conch.py 519 B

123456789101112131415161718
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. from twisted.application.service import ServiceMaker
  4. TwistedSSH = ServiceMaker(
  5. "Twisted Conch Server",
  6. "twisted.conch.tap",
  7. "A Conch SSH service.",
  8. "conch")
  9. TwistedManhole = ServiceMaker(
  10. "Twisted Manhole (new)",
  11. "twisted.conch.manhole_tap",
  12. ("An interactive remote debugger service accessible via telnet "
  13. "and ssh and providing syntax coloring and basic line editing "
  14. "functionality."),
  15. "manhole")