mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-09 08:17:42 +08:00
14 lines
504 B
Python
14 lines
504 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
oauthlib.oauth2.rfc6749
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
This module is an implementation of various logic needed
|
|
for consuming OAuth 2.0 RFC6749.
|
|
"""
|
|
from .backend_application import BackendApplicationClient
|
|
from .base import AUTH_HEADER, BODY, URI_QUERY, Client
|
|
from .legacy_application import LegacyApplicationClient
|
|
from .mobile_application import MobileApplicationClient
|
|
from .service_application import ServiceApplicationClient
|
|
from .web_application import WebApplicationClient
|