Packages

ExIsbndb is an API Wrapper for the ISBNdb API.

Current section

Files

Jump to
ex_isbndb lib application.ex
Raw

lib/application.ex

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