We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4d360b commit 89c957aCopy full SHA for 89c957a
API/__pycache__/main.cpython-39.pyc
334 Bytes
API/main.py
@@ -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