Packages

A GenServer-based fake phone number mapper

Current section

Files

Jump to
fakephone lib application.ex
Raw

lib/application.ex

defmodule Fakephone.Application do
use Application
def start(_type, _args) do
children = [
{Fakephone, []}
]
opts = [strategy: :one_for_one, name: Fakephone.Supervisor]
Supervisor.start_link(children, opts)
end
end