Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/oauthlib/oauth2/rfc6749/endpoints/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

8 statements  

1""" 

2oauthlib.oauth2.rfc6749 

3~~~~~~~~~~~~~~~~~~~~~~~ 

4 

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