Packages

Plug-based authorization for your web apps. Dictate what your users can and cannot see and access.

Current section

Files

Jump to
dictator lib dictator config.ex
Raw

lib/dictator/config.ex

defmodule Dictator.Config do
@moduledoc """
Helpers to get the dictator configs. Intended for internal use only.
"""
def get(key, default \\ nil) do
Application.get_env(:dictator, key, default)
end
end