Packages

Push Service Http Client for Elixir (Aliyun Push)

Current section

Files

Jump to
push_hub lib providers push_provider.ex
Raw

lib/providers/push_provider.ex

defmodule PushHub.ServiceProvider do
use Behaviour
@doc """
interface for push service provider which can be set in config.exs
"""
defcallback send(String.t, String.t, Any) :: {:ok, any} | {:error, any}
end