# Packages
No description provided by the author
# Structs
FSTemplateFetcher treats any given path as existing on the file system and attempts to open the file.
HTTPTemplateFetcher treats any given path as a URL and attempts to download the content via a GET.
Import is a package name and path that is imported by another package.
Interface is an exported interface defined in a package.
Method is a named function attached to an interface.
Package is a container for all exported interfaces of a Go package.
Parameter is a named parameter used by a Method.
TypeArray is a slice or array type.
TypeChan is a channel type.
TypeExported is a user defined type that is exported from a package.
TypeFunc is an input type of a function.
TypeMap is a user defined map type.
TypePointer is a pointer to another type.
TypeVariadic is any type that is prefixed by Ellipsis.
# Interfaces
TemplateFetcher is used to load a template from some source.
Type is a Go type definition that can be rendered into a valid Go code snippet.
# Type aliases
MultiTemplateFetcher takes an ordered set of TemplateFetcher instances an attempts to call each one until a response if received or all fail.
TypeBuiltin is a built in Go type such as "string" or "bool".