Packages

Elixir template generator

Current section

Files

Jump to
template_generator lib template schemas template.ex
Raw

lib/template/schemas/template.ex

defmodule Generator.Template.Schemas.Template do
@moduledoc """
Schema representing a Template
"""
alias __MODULE__
defstruct new_path: nil,
template_path: nil
@type t :: %Template{
new_path: Path.t(),
template_path: Path.t()
}
end