Explorar el Código

Initial commit with FastAPI setup

jezvgg hace 2 meses
commit
c423617a67
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      main.py

+ 7 - 0
main.py

@@ -0,0 +1,7 @@
+from fastapi import FastAPI
+
+app = FastAPI()
+
+@app.get("/")
+def read_root():
+    return {"message": "Hello, World!"}