Packages
EndPointBlank Elixir client library: authorization plus request/response/error/log ingestion (with masking, batching, timeouts, and a bounded queue) — also used for self-monitoring.
Current section
Files
Jump to
Current section
Files
lib/end_point_blank/application.ex
defmodule EndPointBlank.Application do
use Application
@impl true
def start(_type, _args) do
children = [
EndPointBlank.Config,
EndPointBlank.AuthCache,
EndPointBlank.AccessTokens,
EndPointBlank.Writers.DelayedWriter
]
Supervisor.start_link(children, strategy: :one_for_one, name: EndPointBlank.Supervisor)
end
end