Current section
Files
Jump to
Current section
Files
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