Current section
Files
Jump to
Current section
Files
lib/config.ex
defmodule ESC.Config do
@moduledoc false
@default_capacity 160_203
def get_default_capacity,
do: Application.get_env(:ecto_struct_cachex, :capacity, @default_capacity)
def get_disable,
do: Application.get_env(:ecto_struct_cachex, :disable, false)
end