summaryrefslogtreecommitdiff
path: root/lib/chessh/application.ex
blob: c760532a4eb1ac887bf33846d2d59506c7c8e371 (plain)
1
2
3
4
5
6
7
8
9
defmodule Chessh.Application do
  use Application

  def start(_, _) do
    children = [Chessh.Repo]
    opts = [strategy: :one_for_one, name: Chessh.Supervisor]
    Supervisor.start_link(children, opts)
  end
end