teste_docs / app.py
Guilherme Silberfarb Costa
Initial deployment for Hugging Face Space
5240148
Raw
History Blame Contribute Delete
246 Bytes
"""Ponto de entrada da aplicação FastAPI."""
from __future__ import annotations
import uvicorn
from backend.app.runtime import HOST, PORT
if __name__ == "__main__":
uvicorn.run("backend.app.main:app", host=HOST, port=PORT, reload=True)