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


class Server():
	def __init__(self):
		pass

	@cherrypy.expose
	def default(self):
		return "Hello world"