9 lines
154 B
Python
9 lines
154 B
Python
import logging
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
async def async_setup(hass, config):
|
|
_LOGGER.error(f"Setting up browser_mod")
|
|
|
|
return True
|