misp-galaxy/galaxy/lib/python3.12/site-packages/redis/commands/json/_util.py
2024-08-20 18:46:04 +02:00

3 lines
116 B
Python

from typing import Any, Dict, List, Union
JsonType = Union[str, int, float, bool, None, Dict[str, Any], List[Any]]