Current section

Files

Jump to
azupay lib azupay application.ex
Raw

lib/azupay/application.ex

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