13 lines
254 B
Python
13 lines
254 B
Python
from fastapi import FastAPI
|
|
from .database import Base, engine
|
|
from .routes import router
|
|
|
|
# Crear las tablas en MySQL si no existen
|
|
Base.metadata.create_all(bind=engine)
|
|
|
|
# Inicializar FastAPI
|
|
app = FastAPI()
|
|
|
|
# Incluir rutas
|
|
app.include_router(router)
|