Current section

Files

Jump to
rock_solid lib rock_solid resolution dummy_resolver.ex
Raw

lib/rock_solid/resolution/dummy_resolver.ex

defmodule RockSolid.Resolution.Resolvers.DummyResolver do
@moduledoc """
Dummy resolver when there are no remote schemas referenced
"""
@behaviour RockSolid.Resolution.Resolver
def resolve(id, _opts), do: {:error, "unexpected call to DummyResolver with #{id}"}
end