Packages

Official Elixir SDK for Tripswitch — a circuit breaker management service

Current section

Files

Jump to
tripswitch_ex lib tripswitch application.ex
Raw

lib/tripswitch/application.ex

defmodule Tripswitch.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
{Registry, keys: :unique, name: Tripswitch.Registry}
]
Supervisor.start_link(children,
strategy: :one_for_one,
name: Tripswitch.ApplicationSupervisor
)
end
end