blob: dd8a347656044c236dc092847545fac1334f5d81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from twisted.application.service import ServiceMaker
TwistedINETD = ServiceMaker(
"Twisted INETD Server",
"twisted.runner.inetdtap",
"An inetd(8) replacement.",
"inetd",
)
|