UDP Client Ex
Simple UDP client for Elixir.
Installation
If available in Hex, the package can be installed
by adding udp_client_ex to your list of dependencies in mix.exs:
def deps do
[
{:udp_client_ex, "~> 0.1.0"}
]
endYou also need to add :udp_client_ex to your applications to ensure proper initialization:
def application do
[applications: [:udp_client_ex]]
endEventually the library will be available on Hex and the documents found here.