查看版本

This commit is contained in:
王思川 2022-03-01 11:28:25 +08:00
parent 1f863c024a
commit ae799cf4d5
1 changed files with 5 additions and 0 deletions

5
app.py
View File

@ -19,5 +19,10 @@ app.register_blueprint(company_route, url_prefix='/app/company')
app.register_blueprint(esg_route, url_prefix='/app/esg')
@app.route('/app/version')
def hello_world():
return 'WideRating TFSE BackEnd v0.2'
if __name__ == '__main__':
app.run()