mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
16 lines
418 B
Python
16 lines
418 B
Python
"""Constants for the GeoSphere Austria Warnings integration.
|
|
|
|
Warning data is provided by GeoSphere Austria (https://www.geosphere.at)
|
|
under the Creative Commons Attribution 4.0 license.
|
|
"""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "geosphere_austria_warnings"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
ATTRIBUTION = "Data provided by GeoSphere Austria"
|
|
MANUFACTURER = "GeoSphere Austria"
|
|
WARNINGS_URL = "https://warnungen.zamg.at/"
|