mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:41:21 +00:00
7 lines
146 B
Python
7 lines
146 B
Python
from tornado.web import RequestHandler
|
|
|
|
|
|
class MainHandler(RequestHandler):
|
|
def get(self, *args, **kwargs):
|
|
self.render('index.html')
|