这是我的项目文件
档案
web: python main.py
需求.txt
webapp2==2.3
主文件
import webapp2
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.write("hello")
app = webapp2.WSGIApplication([
('/', MainHandler)
], debug=True)
仍然 heroku 给出一个应用程序错误
我的项目有什么问题?