defmodule JSON.LD.DocumentLoader do @moduledoc """ Loader used to retrieve remote documents and contexts. as specified at """ alias JSON.LD.DocumentLoader.RemoteDocument @callback load(String.t, JSON.LD.Options.t) :: {:ok, RemoteDocument.t} | {:error, any} end