Packages

Elixir template generator

Current section

Files

Jump to
template_generator lib path schemas template_file.ex
Raw

lib/path/schemas/template_file.ex

defmodule Generator.Path.Schemas.TemplateFile do
@moduledoc """
Schema representing a template file
"""
alias __MODULE__
defstruct from_path: nil,
to_path: nil
@type t :: %TemplateFile{
from_path: Path.t(),
to_path: Path.t()
}
end