You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
543 B
15 lines
543 B
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)
|