summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
author韩丁康 <[email protected]>2023-11-06 20:32:39 +0800
committer韩丁康 <[email protected]>2023-11-06 20:32:39 +0800
commita272255d80fb1211c841c56cd3ce2adec782ad9c (patch)
tree2530e8cb10a28a80722aec2a5791ef0c40c871bc /app.py
parentc0e647b1a377e5b56d9a3f402c828f28f1d8bd83 (diff)
后端接口更新
Diffstat (limited to 'app.py')
-rw-r--r--app.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/app.py b/app.py
index 659a064..a3920f6 100644
--- a/app.py
+++ b/app.py
@@ -10,10 +10,10 @@ app = APIFlask(__name__)
app.register_blueprint(checkbp)
app.register_blueprint(delaybp)
-
-def hello_world(): # put application's code here
- return 'Hello World!'
[email protected]("获取测试页面")
+def hello():
+ return "这是一个正常的测试页面"
class AllNode(Schema):
nodes=List(Nested(TestNode))