diff options
| author | 韩丁康 <[email protected]> | 2023-11-06 20:32:39 +0800 |
|---|---|---|
| committer | 韩丁康 <[email protected]> | 2023-11-06 20:32:39 +0800 |
| commit | a272255d80fb1211c841c56cd3ce2adec782ad9c (patch) | |
| tree | 2530e8cb10a28a80722aec2a5791ef0c40c871bc /app.py | |
| parent | c0e647b1a377e5b56d9a3f402c828f28f1d8bd83 (diff) | |
后端接口更新
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -10,10 +10,10 @@ app = APIFlask(__name__) app.register_blueprint(checkbp) app.register_blueprint(delaybp) - [email protected]('/') -def hello_world(): # put application's code here - return 'Hello World!' [email protected]('/') [email protected]("获取测试页面") +def hello(): + return "这是一个正常的测试页面" class AllNode(Schema): nodes=List(Nested(TestNode)) |
