real-jiakai commited on
Commit
65d171a
·
verified ·
1 Parent(s): 50194f1

Create main.py

Browse files
Files changed (1) hide show
  1. main.py +12 -0
main.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 从 fastapi 模块导入 FastAPI 类
2
+ from fastapi import FastAPI
3
+
4
+ # 创建一个 FastAPI 应用实例
5
+ app = FastAPI()
6
+
7
+ # 使用装饰器定义一个路由,这里是根路由 "/",使用 HTTP GET 方法
8
+ @app.get("/")
9
+ # 定义一个函数来处理对根路由的请求
10
+ def read_root():
11
+ # 返回一个简单的 JSON 响应
12
+ return {"Hello": "World!"}