#!/usr/bin/env python3 import cherrypy import cherry_lesana as cl def main(): # TODO: read config from a file or something config = { '/': { }, } cherrypy.quickstart(cl.App(), '/', config) if __name__ == '__main__': main()