diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2021-04-14 14:22:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-14 18:22:06 +0000 |
| commit | ea9a8a6d582c97037d45e57273885d8c4a3ef287 (patch) | |
| tree | 6f1d8b222978a38b4375ed521fc70cd6a2237c70 /funcs.go | |
| parent | 8eeedae9d08b94e71444f812481a1650809809dd (diff) | |
Stop using globals for func namespaces (#1127)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'funcs.go')
| -rw-r--r-- | funcs.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ import ( "text/template" "github.com/hairyhenderson/gomplate/v3/data" - "github.com/hairyhenderson/gomplate/v3/funcs" + "github.com/hairyhenderson/gomplate/v3/funcs" //nolint:staticcheck "github.com/hairyhenderson/gomplate/v3/internal/config" ) |
