mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-21 12:19:27 +00:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
15 lines
543 B
Python
15 lines
543 B
Python
from . import (
|
|
AccessTokenEndpoint, AuthorizationEndpoint, RequestTokenEndpoint,
|
|
ResourceEndpoint,
|
|
)
|
|
|
|
|
|
class WebApplicationServer(RequestTokenEndpoint, AuthorizationEndpoint,
|
|
AccessTokenEndpoint, ResourceEndpoint):
|
|
|
|
def __init__(self, request_validator):
|
|
RequestTokenEndpoint.__init__(self, request_validator)
|
|
AuthorizationEndpoint.__init__(self, request_validator)
|
|
AccessTokenEndpoint.__init__(self, request_validator)
|
|
ResourceEndpoint.__init__(self, request_validator)
|