Packages

Library that helps to broadcast messages to different GenServers, improving decoupling of your app.

Current section

Files

Jump to
planb lib plan_b.ex
Raw

lib/plan_b.ex

defmodule PlanB do
@moduledoc """
Documentation for `PlanB`.
"""
@doc """
Hello world.
## Examples
iex> PlanB.hello()
:world
"""
def hello do
:world
end
end