Packages

Elixir client for Amazon Creators API with automatic token caching and management. Supports all regions (NA, EU, FE) and provides easy-to-use functions for fetching product details by ASIN.

Current section

Files

Jump to
amazon_creators_api lib amazon_creators_api application.ex
Raw

lib/amazon_creators_api/application.ex

defmodule AmazonCreatorsApi.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
AmazonCreatorsAPI.TokenManager
]
opts = [strategy: :one_for_one, name: AmazonCreatorsApi.Supervisor]
Supervisor.start_link(children, opts)
end
end