Update README to use event.respond
This commit is contained in:
parent
b3f8b30dab
commit
03e37f5601
10
README.md
10
README.md
|
@ -19,19 +19,19 @@ from bwb.molly import bwb
|
||||||
Boot up:
|
Boot up:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
client.send_message(BOT_WITH_BOT, '000000init ' + bwb.init())
|
client.send_message(CHAT_ID, '000000init ' + bwb.init())
|
||||||
```
|
```
|
||||||
|
|
||||||
On `000000init [data]`:
|
On `000000init [data]`:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
client.send_message(BOT_WITH_BOT, '000000handshake ' + bwb.handshake(data))
|
event.respond('000000handshake ' + bwb.handshake(data))
|
||||||
```
|
```
|
||||||
|
|
||||||
On `000000handshake [data]`:
|
On `000000handshake [data]`:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
client.send_message(BOT_WITH_BOT, bwb.wrap('secret ' + bwb.secret(data)))
|
event.respond(bwb.wrap('secret ' + bwb.secret(data)))
|
||||||
bwb.set_otp(bwb.init_secret)
|
bwb.set_otp(bwb.init_secret)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -39,13 +39,13 @@ On _OTP authed_ `123456secret [data]`:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
bwb.set_secret(data)
|
bwb.set_secret(data)
|
||||||
client.send_message(BOT_WITH_BOT, bwb.wrap('🤝'))
|
event.respond(bwb.wrap('🤝'))
|
||||||
```
|
```
|
||||||
|
|
||||||
On _OTP authed_ `123456🤝`:
|
On _OTP authed_ `123456🤝`:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
client.send_message(BOT_WITH_BOT, '🤝')
|
event.respond('🤝')
|
||||||
```
|
```
|
||||||
|
|
||||||
### Interaction
|
### Interaction
|
||||||
|
|
Loading…
Reference in New Issue
Block a user