Packages

Fetcher allows to fetch list of data from data structures and getting back meaningful errors

Current section

Files

Jump to
fetcher lib fetcher.ex
Raw

lib/fetcher.ex

defmodule Fetcher do
@moduledoc """
Main Fetcher module
"""
def fetch(source, selector) when is_map(source), do: Fetcher.Map.fetch(source, selector)
end