summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/__init__.py
diff options
context:
space:
mode:
authoribl <ibl@localhost>2014-10-16 10:03:38 +0100
committeribl <ibl@localhost>2014-10-16 10:03:38 +0100
commit8624bfc87f0fa24548d01ee33de77fedd802d146 (patch)
tree95094a0605e3a3336479a5c72bdb94af5045dbdd /oauthlib/oauth2/__init__.py
parentdeed5616ae93dcd8c0d57ce2ea1c5fca252a7fde (diff)
downloadoauthlib-8624bfc87f0fa24548d01ee33de77fedd802d146.tar.gz
First step towards supporting JWT bearer grants.
Initial support is only for clients and need more unit tests as well as real service tests. Server support to come later.
Diffstat (limited to 'oauthlib/oauth2/__init__.py')
-rw-r--r--oauthlib/oauth2/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/oauthlib/oauth2/__init__.py b/oauthlib/oauth2/__init__.py
index 79be716..0238f1d 100644
--- a/oauthlib/oauth2/__init__.py
+++ b/oauthlib/oauth2/__init__.py
@@ -13,6 +13,7 @@ from .rfc6749.clients import WebApplicationClient
from .rfc6749.clients import MobileApplicationClient
from .rfc6749.clients import LegacyApplicationClient
from .rfc6749.clients import BackendApplicationClient
+from .rfc6749.clients import ServiceApplicationClient
from .rfc6749.endpoints import AuthorizationEndpoint
from .rfc6749.endpoints import TokenEndpoint
from .rfc6749.endpoints import ResourceEndpoint