Packages

Vigilant keeps an eye on your processes.

Current section

Files

Jump to
vigilant lib application.ex
Raw

lib/application.ex

defmodule Vigilant.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
{DynamicSupervisor, [strategy: :one_for_one, name: Vigilant.MonitorSupervisor]}
]
Supervisor.start_link(children, strategy: :one_for_one, name: Vigilant.Supervisor)
end
end