6 lines
120 B
Python
6 lines
120 B
Python
"""Constants for the image integration."""
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "image"
|
|
|
|
IMAGE_TIMEOUT: Final = 10
|