| from fastapi import FastAPI | |
| from app.api.routes import auth, jobs | |
| from app.core.database import Base, engine | |
| Base.metadata.create_all(bind=engine) | |
| app = FastAPI(title="EditForge AI") | |
| app.include_router(auth.router, prefix="/auth", tags=["auth"]) | |
| app.include_router(jobs.router, prefix="/jobs", tags=["jobs"]) | |