Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Dituon committed Oct 6, 2022
1 parent 789feef commit bdc90d9
Showing 1 changed file with 33 additions and 10 deletions.
43 changes: 33 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ gifQuality: 90
# 是否使用headless模式
headless: true
# 是否自动从仓库同步PetData
autoUpdate: false
autoUpdate: true
# 用于自动更新的仓库地址
repositoryUrl: 'https://raw.githubusercontent.com/Dituon/petpet/main'
# 是否启用开发模式(支持热重载)
devMode: false
# 触发图片生成后的冷却时长(填入-1则禁用,单位为秒)
# 触发图片生成后的用户冷却时长(填入-1则禁用,单位为秒)
coolDown: 10
# 在群聊中触发图片生成后的冷却时长
# 触发图片生成后的群聊冷却时长
groupCoolDown: -1
# 触发冷却后的回复消息
inCoolDownMessage: 操作过快,请稍后再试
# 触发冷却后的回复消息, '[nudge]'为戳一戳
inCoolDownMessage: 技能冷却中...
```

#### 配置项说明
Expand Down Expand Up @@ -258,19 +258,26 @@ inCoolDownMessage: 操作过快,请稍后再试
- **devMode**: `false`

> 开发模式, 启用后**任何人都能使用`pet reload`指令热重载`PetData`**
> 开发模式, 启用后**任何人都能使用`pet reload`指令热重载`PetData`**, 默认为`false`
<br/>
- **coolDown**: `10`

> 成功触发指令后对该用户的冷却时间,单位为秒,设置为`-1`可禁用冷却
> 成功触发指令后对该用户的冷却时间(单位为秒), 默认为 `1`
>
> 设置为 `-1` 可禁用冷却
<br/>
- **coolDown**: `-1`
> 成功触发指令后对该群聊的冷却时间,单位为秒,设置为`-1`可禁用冷却
- **groupCoolDown**: `-1`

> 成功触发指令后对该群聊的冷却时间, 默认为 `1`
<br/>
- **inCoolDownMessage**: `操作过快,请稍后再试`
- **inCoolDownMessage**: `技能冷却中...`

> 在冷却时间中触发命令的回复消息
>
> 配置项为`[nudge]`时, 会以戳一戳形式回复
<br/>
</details>
Expand Down Expand Up @@ -619,6 +626,22 @@ inCoolDownMessage: 操作过快,请稍后再试
使用 `GET` 传递参数, 例如 `127.0.0.1:2333/petpet?key=petpet&toAvatar=$avatarUrl`
`127.0.0.1:2333/petpet?key=osu&textList=hso!`

使用 `POST` 传递参数, 例如 `127.0.0.1:2333/petpet`
```
{
"key": "petpet",
"to": {
"name":"d2n",
"avatar":"https://q1.qlogo.cn/g?b=qq&nk=2544193782&s=640"
},
"textList": [
"test"
]
}
```

可参考`example-script`中的代码实现请求

**结构**
<details>
<summary>展开/收起</summary>
Expand Down

0 comments on commit bdc90d9

Please sign in to comment.