summaryrefslogtreecommitdiff
path: root/funcs/doc.go
diff options
context:
space:
mode:
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