aboutsummaryrefslogtreecommitdiffstats
path: root/src/acit/__init__.py
blob: 7149003072ce6c2ad02681c270a069f85aaa6ff4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import cherrypy

from .web import Server


def run():
	server=Server()
	cherrypy.quickstart(server,"/",
							{
								})