Packages

A package developed in Elixir for code organization and preventing code repetition in specific development scenarios.

Current section

Files

Jump to
gang lib gang.ex
Raw

lib/gang.ex

defmodule Gang do
@callback call(atom(), list(any()), keyword()) :: {:ok, list(any())} | :ok | {:error, any()}
defmacro __using__(_opts) do
quote do
import Gang
@behaviour Gang
end
end
end