mirror of https://github.com/morpheus65535/bazarr
15 lines
605 B
Python
15 lines
605 B
Python
|
from __future__ import absolute_import, unicode_literals
|
||
|
|
||
|
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)
|