kindling/lib/kindling/config.ex

13 lines
308 B
Elixir
Raw Normal View History

2024-02-24 16:42:27 +00:00
defmodule Kindling.Config do
2024-04-12 15:16:58 +00:00
@moduledoc """
Configuration for Kindling.
"""
@doc """
Returns the list of configured root resources.
"""
@spec root_resources() :: [String.t()]
def root_resources,
do: Application.get_env(:kindling, :root_resources, ["Bundle", "Patient", "Encounter"])
2024-02-24 16:42:27 +00:00
end