Library written in Elixir as a fork from the original source code for Coding Dojo S02E01
If available in Hex, the package can be installed as:
- Add
phone_dialer
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:phone_dialer, "~> 0.1.0"}]
end
```
- Ensure
phone_dialer
is started before your application:
```elixir
def application do
[applications: [:phone_dialer]]
end
```