mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-07-04 01:36:23 +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')
|