Current section
Files
Jump to
Current section
Files
priv/templates/service.ex.eex
defmodule <%= mod_name %> do
use Protobuf.Service
<%= Enum.map methods, fn {method, nil} -> %>
rpc <%= method %>
<% {method, {type, path}} -> %>
rpc <%= method %>, <%= type %>: "<%= path %>"
<% end %>
end