Explorar el Código

test commit

main
Almaz Shinbay hace 1 año
padre
commit
c5d38bb9c4
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      app/main.py

+ 6
- 1
app/main.py Ver fichero

@@ -2,7 +2,12 @@ from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def root():
return {"message": "Hello World!"}

@app.get("/user")
def get_users():
return {
"name": "almaz"
}

Cargando…
Cancelar
Guardar