Current section
Files
Jump to
Current section
Files
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