first commit

This commit is contained in:
2024-06-14 16:09:27 -04:00
commit 11b023cd2b
34 changed files with 366 additions and 0 deletions

13
app/dependencies.py Executable file
View File

@@ -0,0 +1,13 @@
from typing import Annotated
from fastapi import Header, HTTPException
async def get_token_header(x_token: Annotated[str, Header()]):
if x_token != "fake-super-secret-token":
raise HTTPException(status_code=400, detail="X-Token header invalid")
async def get_query_token(token: str):
if token != "jessica":
raise HTTPException(status_code=400, detail="No Jessica token provided")