mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
12 lines
183 B
Python
12 lines
183 B
Python
|
|
import tornado.web
|
|
|
|
class MainHandler(tornado.web.RequestHandler):
|
|
def get(self):
|
|
self.write("Hello, world")
|
|
|
|
app = tornado.web.Application([
|
|
(r"/", MainHandler)
|
|
])
|
|
|