Initial import to Tizen
[profile/ivi/python-twisted.git] / twisted / plugins / twisted_web.py
1 # Copyright (c) Twisted Matrix Laboratories.
2 # See LICENSE for details.
3
4 from twisted.application.service import ServiceMaker
5
6 TwistedWeb = ServiceMaker(
7     "Twisted Web",
8     "twisted.web.tap",
9     ("A general-purpose web server which can serve from a "
10      "filesystem or application resource."),
11     "web")