1
0
mirror of synced 2026-01-18 06:04:45 -05:00

Hotfix: CDK make sure to export OAuth2Authenticator. (#3129)

This commit is contained in:
Davin Chia
2021-04-29 22:01:47 +08:00
committed by GitHub
parent 86513d6c54
commit bd99b5ba8c

View File

@@ -28,6 +28,7 @@ from base_python.cdk.abstract_source import AbstractSource
# Separate the SDK imports so they can be moved somewhere else more easily
from base_python.cdk.streams.auth.core import HttpAuthenticator
from base_python.cdk.streams.auth.oauth import Oauth2Authenticator
from base_python.cdk.streams.auth.token import TokenAuthenticator
from base_python.cdk.streams.core import Stream
from base_python.cdk.streams.http import HttpStream
@@ -51,6 +52,7 @@ __all__ = [
"HttpAuthenticator",
"HttpStream",
"Integration",
"Oauth2Authenticator",
"Source",
"Stream",
"TokenAuthenticator",