Current section
Files
Jump to
Current section
Files
lib/avro_ex/term.ex
defmodule AvroExV0.Term do
@behaviour Ecto.Type
def cast(type), do: {:ok, type}
def load(data), do: {:ok, data}
def dump(data), do: {:ok, data}
def type(), do: :term
end