Skip to content

Commit 4e6b602

Browse files
committed
setting up initial project
1 parent 0ec3d0b commit 4e6b602

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

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+
3+
app = FastAPI()
4+
5+
@app.get("/")
6+
async def root():
7+
return{"message": "Hello World"}

0 commit comments

Comments
 (0)