Current section

Files

Jump to
reach lib reach inspect why path.ex
Raw

lib/reach/inspect/why/path.ex

defmodule Reach.Inspect.Why.Path do
@moduledoc "Struct for a single relationship path with evidence."
@derive JSON.Encoder
defstruct [:kind, :nodes, :evidence]
def new(attrs), do: struct!(__MODULE__, attrs)
end