6 lines
213 B
Plaintext
6 lines
213 B
Plaintext
@app.get("/favicon.ico")
|
|
async def favicon():
|
|
file_path = os.path.join("static", "favicon.ico")
|
|
if os.path.exists(file_path):
|
|
return FileResponse(file_path)
|
|
raise HTTPException(status_code=404) |