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()]
|
2024-03-01 17:39:16 +00:00
|
|
|
def root_resources,
|
|
|
|
do: Application.get_env(:kindling, :root_resources, ["Bundle", "Patient", "Encounter"])
|
2024-02-24 16:42:27 +00:00
|
|
|
end
|