Packages

A general throttle utility. Mainly used to throttle inbound or outbound requests.

Current section

Files

Jump to
throttle lib config.ex
Raw

lib/config.ex

defmodule Throttle.Config do
@moduledoc false
def get(key, default \\ nil) do
Application.get_env(:throttle, key, default)
end
end