32 lines
630 B
Markdown
32 lines
630 B
Markdown
# P2pChat
|
|
|
|
## Wire-Protocol
|
|
|
|
The protocol is separated into two parts.
|
|
The lower layer takes care of p2p coordination while the upper chat layer sits on top of it.
|
|
|
|
### P2P
|
|
|
|
TODO
|
|
|
|
### Chat
|
|
|
|
TODO
|
|
|
|
## Installation
|
|
|
|
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
|
|
by adding `p2p_chat` to your list of dependencies in `mix.exs`:
|
|
|
|
```elixir
|
|
def deps do
|
|
[
|
|
{:p2p_chat, "~> 0.1.0"}
|
|
]
|
|
end
|
|
```
|
|
|
|
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
|
|
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
|
|
be found at <https://hexdocs.pm/p2p_chat>.
|
|
|