Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-08 06:22 +0000
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-08 06:22 +0000
1"""
2oauthlib.oauth2.rfc6749
3~~~~~~~~~~~~~~~~~~~~~~~
5This module is an implementation of various logic needed
6for consuming and providing OAuth 2.0 RFC6749.
7"""
8from .authorization import AuthorizationEndpoint
9from .introspect import IntrospectEndpoint
10from .metadata import MetadataEndpoint
11from .pre_configured import (
12 BackendApplicationServer, LegacyApplicationServer, MobileApplicationServer,
13 Server, WebApplicationServer,
14)
15from .resource import ResourceEndpoint
16from .revocation import RevocationEndpoint
17from .token import TokenEndpoint