import cherrypy

# the CherryPy wsgi_filter application class
from wsgi_filter import WSGIApp

# this is pybloxsom's wsgi app
from wsgi_app import application

class Root(object):
    @cherrypy.expose
    def index(self):
        return "<a href='bloxsom'>PyBloxsom blog</a>"

cherrypy.root = Root()
cherrypy.root.bloxsom = WSGIApp(application)

cherrypy.server.start()

