0
0
mirror of https://github.com/thegeeklab/git-sv.git synced 2024-09-19 13:52:45 +02:00

Merge pull request #91 from bvieira/#87

Feature: add os.Getenv as template function
This commit is contained in:
Beatriz Vieira 2023-01-22 21:02:02 -03:00 committed by GitHub
commit 952dcec96f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ package sv
import (
"bytes"
"io/fs"
"os"
"sort"
"text/template"
"time"
@ -35,6 +36,7 @@ func NewOutputFormatter(templatesFS fs.FS) *OutputFormatterImpl {
templateFNs := map[string]interface{}{
"timefmt": timeFormat,
"getsection": getSection,
"getenv": os.Getenv,
}
tpls := template.Must(template.New("templates").Funcs(templateFNs).ParseFS(templatesFS, "*"))
return &OutputFormatterImpl{templates: tpls}