aboutsummaryrefslogtreecommitdiffstats
path: root/src/acit/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/acit/__init__.py')
-rw-r--r--src/acit/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/acit/__init__.py b/src/acit/__init__.py
new file mode 100644
index 0000000..7149003
--- /dev/null
+++ b/src/acit/__init__.py
@@ -0,0 +1,13 @@
+
+import cherrypy
+
+from .web import Server
+
+
+def run():
+ server=Server()
+ cherrypy.quickstart(server,"/",
+ {
+ })
+
+