Add OIDCProxy to auth module exports (#2308)

Fixes #2298

Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: Jeremiah Lowin <jlowin@users.noreply.github.com>
This commit is contained in:
Jeremiah Lowin 2025-10-29 11:28:26 -07:00 committed by GitHub
commit e2d317eeb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,7 @@ from .auth import (
)
from .providers.jwt import JWTVerifier, StaticTokenVerifier
from .oauth_proxy import OAuthProxy
from .oidc_proxy import OIDCProxy
__all__ = [
@ -15,6 +16,7 @@ __all__ = [
"JWTVerifier",
"OAuthProvider",
"OAuthProxy",
"OIDCProxy",
"RemoteAuthProvider",
"StaticTokenVerifier",
"TokenVerifier",