mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-20 19:59:26 +00:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
18 lines
553 B
Python
18 lines
553 B
Python
"""
|
|
oauthlib.oauth2.rfc6749
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
This module is an implementation of various logic needed
|
|
for consuming and providing OAuth 2.0 RFC6749.
|
|
"""
|
|
from .authorization import AuthorizationEndpoint
|
|
from .introspect import IntrospectEndpoint
|
|
from .metadata import MetadataEndpoint
|
|
from .pre_configured import (
|
|
BackendApplicationServer, LegacyApplicationServer, MobileApplicationServer,
|
|
Server, WebApplicationServer,
|
|
)
|
|
from .resource import ResourceEndpoint
|
|
from .revocation import RevocationEndpoint
|
|
from .token import TokenEndpoint
|