Packages

user authentication library

Current section

Files

Jump to
attest lib attest config.ex
Raw

lib/attest/config.ex

defmodule Attest.Config do
@moduledoc """
Get value from config
"""
[
:schema_name,
:repo,
] |> Enum.each(fn key ->
def unquote(key)() do
Application.get_env(:attest, unquote(key))
end
end)
end