-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
34 lines (34 loc) · 941 Bytes
/
config.py
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
config = {
"multi": [
{
"cookie": """xxx""",
# "push": {
# "type": "pushplus",
# "key": "xxx",
# },
},
# {
# "cookie": "",
# # "push": [
# # # 以数组的形式填写, 则会向多个服务推送消息
# # {
# # "type": "pushplus",
# # "key": "xxx",
# # },
# # {
# # "type": "workWechat",
# # "key": {
# # "agentid": 1000002,
# # "corpSecret": "xxx",
# # "corpid": "xxx",
# # },
# # },
# # ],
# },
],
"push": {
# 合并发送消息, 只合并未单独配置 push 的账号
"type": "pushplus",
"key": "xxx",
},
}