Packages

Trackr for every movement you make.

Current section

Files

Jump to
trackr lib trackr application.ex
Raw

lib/trackr/application.ex

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