Initial tornado application

This commit is contained in:
Sagi Frimer
2019-03-01 20:16:04 +02:00
parent caa78379e2
commit 1960cd434b
12 changed files with 40 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.render("index.html")