6 lines
134 B
Python
6 lines
134 B
Python
from typing import Dict
|
|
|
|
DOCKER_MAP: Dict[str, str] = {}
|
|
LOG_FILTER_PENDING: Dict[int, dict] = {}
|
|
UPDATES_CACHE: Dict[int, dict] = {}
|