Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/oauthlib/oauth2/rfc6749/grant_types/__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

6 statements  

1""" 

2oauthlib.oauth2.rfc6749.grant_types 

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

4""" 

5from .authorization_code import AuthorizationCodeGrant 

6from .client_credentials import ClientCredentialsGrant 

7from .implicit import ImplicitGrant 

8from .refresh_token import RefreshTokenGrant 

9from .resource_owner_password_credentials import ( 

10 ResourceOwnerPasswordCredentialsGrant, 

11)