From c5e60476e205ce08c823bfd477f228adcb04b7bf Mon Sep 17 00:00:00 2001 From: mblanke Date: Mon, 1 Dec 2025 08:32:51 -0500 Subject: [PATCH] chore: Remove accidental file --- .../app/from fastapi import FastAPI.py | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 services/hackgpt-api/app/from fastapi import FastAPI.py diff --git a/services/hackgpt-api/app/from fastapi import FastAPI.py b/services/hackgpt-api/app/from fastapi import FastAPI.py deleted file mode 100644 index fd2e48c..0000000 --- a/services/hackgpt-api/app/from fastapi import FastAPI.py +++ /dev/null @@ -1,21 +0,0 @@ -from fastapi import FastAPI -from starlette.middleware.cors import CORSMiddleware -import os - -app = FastAPI() - -# CORS middleware -app.add_middleware( - CORSMiddleware, - allow_origins=["*"], # Allows all origins - allow_credentials=True, - allow_methods=["*"], # Allows all methods - allow_headers=["*"], # Allows all headers -) - -LLM_ROUTER_URL = os.getenv("LLM_ROUTER_URL", "http://strikepackage-llm-router:8000") - - -@app.get("/") -async def root(): - return {"message": "Hello World"} \ No newline at end of file