Current section
Files
Jump to
Current section
Files
priv/eex_templates/routine_result_item.ex.eex
# This code has been auto-generated
# Changes to this file will be lost on next generation
defmodule <%= @module_name %> do
@fields [
<%= for {param, index} <- @routine_result_fields |> Enum.with_index() do %>
:<%= param %><%= if index != Enum.count(@routine_result_fields) do %>,<% end %>
<% end %>
]
@enforce_keys @fields
defstruct @fields
@type t() :: %<%= @module_name %>{}
end