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