-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.py
More file actions
37 lines (35 loc) · 882 Bytes
/
config.py
File metadata and controls
37 lines (35 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
push = {
"type": "pushplus",
"key": "xxx",
}
config = {
"multi": [
{
"bduss": "xxx",
"push": push,
},
{
"bduss": "xxx",
# "push": [
# # 以数组的形式填写, 则会向多个服务推送消息
# {
# "type": "pushplus",
# "key": "xxx",
# },
# {
# "type": "workWechat",
# "key": {
# "agentid": 1000002,
# "corpSecret": "xxx",
# "corpid": "xxx",
# },
# },
# ],
},
],
# "push": {
# # 合并发送消息, 只合并未单独配置 push 的账号
# "type": "pushplus",
# "key": "xxx",
# },
}