mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-26 21:02:31 +03:00
8 lines
137 B
Python
8 lines
137 B
Python
from typing import Optional
|
|
|
|
from fastapi import Header
|
|
|
|
|
|
def get_origin_header(origin: Optional[str] = Header(None)):
|
|
return origin
|