Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-10-07 23:52:55 +02:00
commit a4fd5fd2d9
61 changed files with 18951 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import uvicorn
def main():
print("🚀 Iniciando servidor LiveKit Backend en http://0.0.0.0:8000 ...")
uvicorn.run(
"backend.main:app", # apunta al FastAPI que ya tienes
host="0.0.0.0",
port=8000,
reload=True
)
if __name__ == "__main__":
main()