9 lines
227 B
Python
9 lines
227 B
Python
from typing import Dict
|
|
|
|
DOCKER_MAP: Dict[str, str] = {}
|
|
LOG_FILTER_PENDING: Dict[int, dict] = {}
|
|
UPDATES_CACHE: Dict[int, dict] = {}
|
|
ARCANE_CACHE: Dict[int, dict] = {}
|
|
REBOOT_PENDING: Dict[int, dict] = {}
|
|
METRICS_STORE = None
|