7 lines
130 B
Python
7 lines
130 B
Python
import tornado.web
|
|
|
|
|
|
class HowToPlayHandler(tornado.web.RequestHandler):
|
|
def get(self):
|
|
self.render("howtoplay.html")
|