mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-02 22:12:57 +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
|