We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit d52bd6eCopy full SHA for d52bd6e
main.py
@@ -0,0 +1,10 @@
1
+from fastapi import FastAPI
2
+
3
+app = FastAPI()
4
5
6
+@app.get("/")
7
+async def root():
8
+ return {"message": "Hello World"}
9
10
0 commit comments