Spoof out an example

This commit is contained in:
Luke Murphy 2020-08-01 18:53:22 +02:00
parent 01b3980f47
commit fe32a87a63
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 14 additions and 1 deletions

View File

@ -13,5 +13,18 @@ $ pip install simple-message-channels
## Example
```python
print("TODO")
from simple_message_channels import SimpleMessageChannel
smc = SimpleMessageChannel()
send = smc.send(1, 2, b"foo")
recv = smc.recv(send_payload)
print(f"send: {send}", f"recv: {recv}, sep="\n")
```
Output:
```sh
```