Skip to content

Commit 89c957a

Browse files
committed
fastapi
1 parent f4d360b commit 89c957a

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
334 Bytes
Binary file not shown.

API/main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from fastapi import FastAPI
2+
app = FastAPI()
3+
4+
5+
@app.get("/")
6+
def root():
7+
return {"message": "Hello World"}

0 commit comments

Comments
 (0)