1
0
mirror of synced 2026-01-17 12:07:50 -05:00
Files
airbyte/airbyte-integrations/bases/base-python/base_python/cdk/streams/auth/jwt.py
2021-09-27 10:45:50 -07:00

15 lines
306 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
from typing import Any, Mapping
from base_python.cdk.streams.auth.core import HttpAuthenticator
class JWTAuthenticator(HttpAuthenticator):
def get_auth_header(self) -> Mapping[str, Any]:
# TODO
raise NotImplementedError