Current section

Files

Jump to
nimble_template lib nimble_template templates variants phoenix live template.ex
Raw

lib/nimble_template/templates/variants/phoenix/live/template.ex

defmodule NimbleTemplate.Templates.Phoenix.Live.Template do
@moduledoc false
alias NimbleTemplate.Projects.Project
alias NimbleTemplate.Templates.Phoenix.Web.Template, as: WebTemplate
def apply(%Project{} = project) do
apply_web_addons(project)
end
defp apply_web_addons(project) do
WebTemplate.apply(project)
end
end