mirror of https://github.com/markbates/pkger.git
20 lines
316 B
Go
20 lines
316 B
Go
package actions
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/markbates/pkger"
|
|
)
|
|
|
|
func WalkTemplates(w io.Writer) error {
|
|
return pkger.Walk("/templates", func(path string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = w.Write([]byte(fmt.Sprintf("%s\n", path)))
|
|
return err
|
|
})
|
|
}
|