twisted_runner.py 278 B

12345678910
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. from twisted.application.service import ServiceMaker
  4. TwistedProcmon = ServiceMaker(
  5. "Twisted Process Monitor",
  6. "twisted.runner.procmontap",
  7. ("A process watchdog / supervisor"),
  8. "procmon")