Current section
Files
Jump to
Current section
Files
lib/splode/stacktrace.ex
defmodule Splode.Stacktrace do
@moduledoc "A placeholder for a stacktrace so that we can avoid printing it everywhere"
defstruct [:stacktrace]
@type t :: %__MODULE__{stacktrace: list}
defimpl Inspect do
def inspect(_, _) do
"#Splode.Stacktrace<>"
end
end
end