aboutsummaryrefslogtreecommitdiff
path: root/myrpki.rototill/cherrypy-example.py
diff options
context:
space:
mode:
Diffstat (limited to 'myrpki.rototill/cherrypy-example.py')
-rw-r--r--myrpki.rototill/cherrypy-example.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/myrpki.rototill/cherrypy-example.py b/myrpki.rototill/cherrypy-example.py
deleted file mode 100644
index c5c97fef..00000000
--- a/myrpki.rototill/cherrypy-example.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# $Id$
-
-import cherrypy
-
-class HelloWorld(object):
-
- @cherrypy.expose
- def index(self):
- return "Hello world!"
-
-if __name__ == "__main__":
- cherrypy.quickstart(HelloWorld())