(self, req)
| 25 | |
| 26 | class MainHandler(webapp2.RequestHandler): |
| 27 | def get(self, req): |
| 28 | template = JINJA_ENVIRONMENT.get_template('index.html') |
| 29 | self.response.write(template.render()) |
| 30 | |
| 31 | app = webapp2.WSGIApplication([ |
| 32 | ('/(.*)', MainHandler) |
no test coverage detected