summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc6749/grant_types/__init__.py
blob: 195cd094b25ea4e564fbeb314cb6a58cc9c0468b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-
"""
oauthlib.oauth2.rfc6749.grant_types
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"""
from .authorization_code import AuthorizationCodeGrant
from .client_credentials import ClientCredentialsGrant
from .implicit import ImplicitGrant
from .refresh_token import RefreshTokenGrant
from .resource_owner_password_credentials import (
    ResourceOwnerPasswordCredentialsGrant,
)