1 parent 0ec3d0b commit 4e6b602Copy full SHA for 4e6b602
1 file changed
main.py
@@ -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