Current section

Files

Jump to
elixir_structure_manager lib core domain behaviour.ex
Raw

lib/core/domain/behaviour.ex

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