mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-23 10:06:31 +01:00
* Move Twitch constants to separate file * Move Twitch constants to separate file * Move Twitch constants to separate file * Update branch
11 lines
200 B
Python
11 lines
200 B
Python
"""Const for Twitch."""
|
|
import logging
|
|
|
|
from twitchAPI.twitch import AuthScope
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_CHANNELS = "channels"
|
|
|
|
OAUTH_SCOPES = [AuthScope.USER_READ_SUBSCRIPTIONS]
|