15 lines
		
	
	
		
			472 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			472 B
		
	
	
	
		
			Python
		
	
	
"""Application credentials platform for yolink."""
 | 
						|
 | 
						|
from yolink.const import OAUTH2_AUTHORIZE, OAUTH2_TOKEN
 | 
						|
 | 
						|
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=OAUTH2_AUTHORIZE,
 | 
						|
        token_url=OAUTH2_TOKEN,
 | 
						|
    )
 |