Packages

Production-grade Elixir client for the Paysafe API

Current section

Files

Jump to
paysafe lib paysafe application.ex
Raw

lib/paysafe/application.ex

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