Documentation
¶
Overview ¶
Package template provides a shared template reader for codegen packages. It allows loading templates and partials from an fs.FS, supporting embedded templates. Each codegen package should embed its templates and create a TemplateReader.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TemplateReader ¶
type TemplateReader struct {
FS fs.FS
// Extension is the filename suffix used for top-level templates.
// Defaults to ".go.tpl" when empty.
Extension string
// PartialExtension is the filename suffix used for partial templates.
// Defaults to Extension when empty.
PartialExtension string
}
TemplateReader reads templates and partials from a provided filesystem.
Click to show internal directories.
Click to hide internal directories.