|
@@ -15,7 +15,7 @@ import platform
|
|
|
app = FastAPI()
|
|
|
# app.include_router(home.router)
|
|
|
app.include_router(api.router, prefix="/api")
|
|
|
-app.include_router(prod_api.router, prefix="/prod_api")
|
|
|
+app.include_router(prod_api.router, prefix="")
|
|
|
|
|
|
@app.get("/", response_class=PlainTextResponse)
|
|
|
async def main():
|