Files
proyecto_ciec_v6/apps/api/code/main.py
2026-03-11 18:18:42 -06:00

8 lines
102 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return("Hola Mundo")