Packages

Rate limiting tool.

Current section

Files

Jump to
ral lib ral.ex
Raw

lib/ral.ex

defmodule Ral do
@moduledoc """
Documentation for Ral.
"""
@doc """
Hello world.
## Examples
iex> Ral.hello()
"A rate limiting tool."
"""
def hello do
"A rate limiting tool."
end
end