Current section

Files

Jump to
tableau lib tableau application.ex
Raw

lib/tableau/application.ex

defmodule Tableau.Application do
@moduledoc false
use Application
require Logger
@impl true
def start(_type, _args) do
children = [Tableau.ServerSupervisor]
opts = [strategy: :one_for_one, name: Tableau.Supervisor]
Supervisor.start_link(children, opts)
end
end