Packages

Multi platform, multi app push notifications

Retired package: Deprecated - cartel is no longer maintained, you should switch to a different library

Current section

Files

Jump to
cartel lib cartel.ex
Raw

lib/cartel.ex

defmodule Cartel do
@moduledoc """
`Cartel` OTP Application
"""
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
dealers = Application.get_env(:cartel, :dealers, [])
Cartel.Supervisor.start_link(dealers)
end
end