feat: 返回系统信息
This commit is contained in:
parent
72a6ed6a46
commit
ef66c256af
|
|
@ -29,6 +29,10 @@ def get_standard():
|
||||||
standard = json.load(f)
|
standard = json.load(f)
|
||||||
return standard
|
return standard
|
||||||
|
|
||||||
|
@app.route("/api/system_info/", methods=["GET"])
|
||||||
|
def get_system_info():
|
||||||
|
return jsonify({"base_name": "转型金融核算系统"}), 200
|
||||||
|
|
||||||
|
|
||||||
@app.route("/api/standard/", methods=["GET"])
|
@app.route("/api/standard/", methods=["GET"])
|
||||||
@jwt_required()
|
@jwt_required()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue