Current section
Files
Jump to
Current section
Files
lib/anthropic/application.ex
defmodule Anthropic.Application do
@moduledoc false
use Application
@doc false
def start(_type, _args) do
children = [
{Finch, name: Anthropic.HTTPClient.Engine}
]
opts = [strategy: :one_for_one, name: Anthropic.Supervisor]
Supervisor.start_link(children, opts)
end
end