Files
yaoyaoai/app/schemas/app_config.py
fengchuanhn@gmail.com 3db327d93b 22
2026-05-17 12:54:13 +08:00

7 lines
156 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""桌面端应用配置name -> value 字典。"""
from typing import Dict
# GET /api/v1/appConfig 的 data 载荷类型
AppConfigMap = Dict[str, str]