mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
14 lines
211 B
Python
14 lines
211 B
Python
|
|
"""
|
||
|
|
渲染器服务的共享配置和常量
|
||
|
|
"""
|
||
|
|
|
||
|
|
RESERVED_TEMPLATE_KEYS: set[str] = {
|
||
|
|
"data",
|
||
|
|
"theme",
|
||
|
|
"theme_css",
|
||
|
|
"extra_css",
|
||
|
|
"required_scripts",
|
||
|
|
"required_styles",
|
||
|
|
"frameless",
|
||
|
|
}
|