12 lines
312 B
Python
12 lines
312 B
Python
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
from twisted.application.service import ServiceMaker
|
|
|
|
TwistedWeb = ServiceMaker(
|
|
"Twisted Web",
|
|
"twisted.web.tap",
|
|
("A general-purpose web server which can serve from a "
|
|
"filesystem or application resource."),
|
|
"web")
|