Files
PhotonVision/Python/app/handlers/MainHandler.py
2019-03-01 20:16:04 +02:00

7 lines
121 B
Python

import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.render("index.html")