mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-06 00:01:20 +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')
|