rum-goggles/vendor/github.com/leaanthony/gosod/gosod.go

12 lines
232 B
Go
Raw Permalink Normal View History

2024-02-23 16:39:16 +00:00
package gosod
import (
"github.com/leaanthony/gosod/internal/templatedir"
"io/fs"
)
// New creates a new TemplateDir structure for the given filesystem
func New(fs fs.FS) *templatedir.TemplateDir {
return templatedir.New(fs)
}