rum-goggles/v1/vendor/github.com/leaanthony/gosod/gosod.go
2024-02-23 12:10:39 -05:00

12 lines
232 B
Go

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)
}