misp-galaxy/galaxy/lib/python3.12/site-packages/redis/commands/json/_util.py

4 lines
116 B
Python
Raw Normal View History

2024-08-20 16:46:04 +00:00
from typing import Any, Dict, List, Union
JsonType = Union[str, int, float, bool, None, Dict[str, Any], List[Any]]