Current section
Files
Jump to
Current section
Files
lib/transloaditex.ex
# defmodule Transloaditex do
# @moduledoc """
# Transloaditex is an Elixir implmenetation of [Transloadit API]{https://transloadit.com/docs/api/}
# ## Installation
# The package can be installed by adding `transloaditex` to your list of dependencies in `mix.exs`:
# ```elixir
# # mix.exs
# def deps do
# [
# {:transloaditex, "~> 0.1.0}
# ]
# ```
# ### Configuration
# Transloaditex has the following config items:
# * `auth_key` (string) - Auth key...
# * `auth_secret` (string) - Auth secret...
# * `max_retries` (Optional[int]) - Maximum number of retries before timing out
# * `duration` (Optional[int]) - Amount of time for auth expiration, value is in seconds
# config :transloaditex,
# auth_key: "1526fdc376af415795be46f6c2b979a6",
# auth_secret: "a2dd4f8707164d2bb0738cee70056c6ed15b4c19",
# max_retries: 10,
# duration: 300
# """
# end