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 """
Documentation for Maplog.
"""
@doc """
Hello world.
## Examples
iex> Maplog.hello()
:world
"""
def hello do
:world
end
use Application
def start(_type, _args) do
Maplog.Supervisor.start_link(name: Maplog.Supervisor)
end
defdelegate dump, to: Maplog.Registry #, as: :dump
defdelegate parse_map(map), to: Maplog.Parser #, as: :dump
end