7 lines
122 B
Python
7 lines
122 B
Python
import tornado.web
|
|
|
|
|
|
class AboutHandler(tornado.web.RequestHandler):
|
|
def get(self):
|
|
self.render("about.html")
|