aboutsummaryrefslogtreecommitdiffstats
path: root/src/acit/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/acit/web.py')
-rw-r--r--src/acit/web.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/acit/web.py b/src/acit/web.py
new file mode 100644
index 0000000..ae45679
--- /dev/null
+++ b/src/acit/web.py
@@ -0,0 +1,13 @@
+
+import cherrypy
+
+
+class Server():
+ def __init__(self):
+ pass
+
+ @cherrypy.expose
+ def default(self):
+ return "Hello world"
+
+