This commit is contained in:
熊潇 2025-05-02 17:54:01 +08:00
parent c2d83a4927
commit 55d9f4b722

View File

@ -86,7 +86,8 @@ def hello_world():
@app.route("/a1", methods=["GET"])
def get_a1():
return {'a1': A1}
global global_a1
return {'a1': global_a1}
if __name__ == '__main__':