Spoof out an example

This commit is contained in:
Luke Murphy
2020-08-01 18:53:22 +02:00
parent 01b3980f47
commit fe32a87a63

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
```