7 lines
156 B
Python
7 lines
156 B
Python
"""桌面端应用配置:name -> value 字典。"""
|
||
|
||
from typing import Dict
|
||
|
||
# GET /api/v1/appConfig 的 data 载荷类型
|
||
AppConfigMap = Dict[str, str]
|