Current section
Files
Jump to
Current section
Files
lib/ex_magic_eden/http/response.ex
defmodule ExMagicEden.Http.Response do
@type t :: %__MODULE__{
status_code: non_neg_integer,
body: String.t()
}
defstruct ~w[status_code body]a
end