mirror of
https://github.com/audacity/conan-recipes.git
synced 2025-12-13 04:46:12 -06:00
8 lines
177 B
Python
8 lines
177 B
Python
class BearerAuth:
|
|
def __init__(self, key:str):
|
|
self.key = key
|
|
|
|
def __call__(self, r):
|
|
r.headers["Authorization"] = f'Bearer {self.key}'
|
|
return r
|