Files
geMoldInsight/venv/lib/python3.11/site-packages/redis/commands/json/_util.py
T

6 lines
137 B
Python
Raw Normal View History

2026-02-12 23:22:11 +08:00
from typing import List, Mapping, Union
JsonType = Union[
str, int, float, bool, None, Mapping[str, "JsonType"], List["JsonType"]
]