Packages

store for keys and their values for parsed map objects

Current section

Files

Jump to
maplog lib maplog.ex
Raw

lib/maplog.ex

defmodule Maplog do
@moduledoc """
An application for tracking keys and related values for the submitted maps
To be used, for instance, ina Master Data management software
"""
use Application
def start(_type, _args) do
Maplog.Supervisor.start_link(name: Maplog.Supervisor)
end
## , as: :dump
defdelegate dump, to: Maplog.Registry
defdelegate get_keys, to: Maplog.Registry
defdelegate get_key_values(key), to: Maplog.Registry
defdelegate load, to: Maplog.Registry
defdelegate parse_map(map), to: Maplog.Parser
end