Packages

A library for creating test simulators for external services.

Current section

Files

Jump to
sims priv templates sims.gen.config_module config.ex.eex
Raw

priv/templates/sims.gen.config_module/config.ex.eex

defmodule <%= inspect @module %> do
@moduledoc """
Main configuration module for the application
"""
alias <%= inspect @swappable_config.default_adapter %>
@behaviour <%= inspect @swappable_config.behaviour %>
defp adapter do
Application.get_env(<%= inspect @swappable_config.app_name %>, :config_adapter, <%= @swappable_config.default_adapter_alias %>)
end
end