mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
12 lines
190 B
Python
12 lines
190 B
Python
import cherrypy
|
|
|
|
|
|
class Root:
|
|
@cherrypy.expose
|
|
def index(self):
|
|
return 'Hello World!'
|
|
|
|
cherrypy.config.update({'environment': 'embedded'})
|
|
|
|
app = cherrypy.tree.mount(Root())
|