Last active
July 16, 2018 14:49
-
-
Save cybrox/fd93a947a3b3bb9135a785753c9f7ced to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Rayman do | |
| @moduledoc """ | |
| Rayman is a pure Elixir implementation of MQTT for educational purposes. | |
| """ | |
| def decode_packet(packet) do | |
| IO.inspect packet | |
| end | |
| def encode_packet(data) do | |
| IO.inspect data | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment