Current section
Files
Jump to
Current section
Files
lib/msgpack/ext.ex
defmodule Msgpack.Ext do
@moduledoc """
Defines a struct to represent MessagePack Custom Extension Types.
"""
@type t :: %__MODULE__{type: integer, data: binary}
defstruct [:type, :data]
end