Stub InvirtWeb implementation
[invirt/packages/invirt-web.git] / code / main.py
index 6fdd31a..1739318 100755 (executable)
@@ -13,7 +13,14 @@ import sys
 import time
 import urllib
 import socket
+import cherrypy
 from StringIO import StringIO
+from view import View
+
+class InvirtWeb(View):
+    @cherrypy.expose
+    def helloworld(self):
+        return "Hello world!"
 
 def revertStandardError():
     """Move stderr to stdout, and return the contents of the old stderr."""