Fixed a variable

This commit is contained in:
2024-06-20 10:43:53 -04:00
parent 11b023cd2b
commit 187588d3ae
4 changed files with 85 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
from fastapi import FastAPI
from app.routers import info
from app.routers import info, delivery, customer
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
@@ -22,7 +22,8 @@ app.add_middleware(
app.include_router(info.router)
app.include_router(delivery.router)
app.include_router(customer.router)
@app.get("/")
def read_root():