chore: Remove accidental file

This commit is contained in:
2025-12-01 08:32:51 -05:00
parent fecb4229b6
commit c5e60476e2

View File

@@ -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"}