summaryrefslogtreecommitdiff
path: root/funcs/doc.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2024-01-25 20:11:31 -0500
committerGitHub <noreply@github.com>2024-01-25 20:11:31 -0500
commitebb97fb7367fb983cffc1935a8fb57e4b80f5249 (patch)
tree43ef6cd01f629f60f59efe1e5b003f7c8e3a1257 /funcs/doc.go
parentf1d9158ea99abbe556251c1ff2fe970f3b460ee9 (diff)
Move funcs package to internal (#1977)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'funcs/doc.go')
-rw-r--r--funcs/doc.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/funcs/doc.go b/funcs/doc.go
deleted file mode 100644
index 69a01281..00000000
--- a/funcs/doc.go
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
-Package funcs is an internal package that provides gomplate namespaces and
-functions to be used in 'text/template' templates.
-
-The different namespaces can be added individually:
-
- f := template.FuncMap{}
- for k, v := range funcs.CreateMathFuncs(ctx) {
- f[k] = v
- }
- for k, v := range funcs.CreateNetFuncs(ctx) {
- f[k] = v
- }
-
-Even though the functions are exported, these are not intended to be called
-programmatically by external consumers, but instead only to be used as template
-functions.
-
-Deprecated: This package will be made internal in a future major version.
-*/
-package funcs