mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-08 20:13:11 -08:00
15 lines
504 B
Python
15 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
|