chikamov1's picture
Fix: Ensure app.py is truly minimal entry point, avoiding route redefinition
8df612e
raw
history blame contribute delete
381 Bytes
# app.py
# This is the main entry point for Uvicorn to run the FastAPI application.
# Import the 'app' instance from the 'translation_api' module.
# This 'app' object is your complete FastAPI application.
from translation_api import app
# NO OTHER CODE SHOULD BE IN THIS FILE.
# All routes, startup events, and other application logic
# MUST be defined within translation_api.py.