mirror of https://github.com/home-assistant/core
15 lines
481 B
Python
15 lines
481 B
Python
"""Application credentials platform for senz."""
|
|
|
|
from aiosenz import AUTHORIZATION_ENDPOINT, TOKEN_ENDPOINT
|
|
|
|
from homeassistant.components.application_credentials import AuthorizationServer
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
async def async_get_authorization_server(hass: HomeAssistant) -> AuthorizationServer:
|
|
"""Return authorization server."""
|
|
return AuthorizationServer(
|
|
authorize_url=AUTHORIZATION_ENDPOINT,
|
|
token_url=TOKEN_ENDPOINT,
|
|
)
|