Current section

Files

Jump to
elixir_structure_manager lib core domain model.ex
Raw

lib/core/domain/model.ex

defmodule Domain.Model do
@moduledoc false
@base "/priv/templates/domain/"
def actions do
%{
create: %{
"lib/domain/model/{name_snake}.ex" => @base <> "model.ex"
},
transformations: []
}
end
def tokens(_opts) do
[]
end
end