lib/live_view_native_platform/modifier/type.ex

defmodule LiveViewNativePlatform.Modifier.Type do
  defmacro __using__(_) do
    quote do
      use Ecto.Type

      def load(_), do: :error

      def dump(_), do: :error
    end
  end
end