PhoneDialer Build Status

Library written in Elixir as a fork from the original source code for Coding Dojo S02E01

Installation

If available in Hex, the package can be installed as:

  1. Add phone_dialer to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:phone_dialer, "~> 0.1.0"}]
end
```
  1. Ensure phone_dialer is started before your application:
```elixir
def application do
  [applications: [:phone_dialer]]
end
```