forked from openpitrix/libconfd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmpl_funcs_zz.go
59 lines (55 loc) · 1.61 KB
/
tmpl_funcs_zz.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2018 The OpenPitrix Authors. All rights reserved.
// Use of this source code is governed by a Apache license
// that can be found in the LICENSE file.
// Auto generated by go generate, DO NOT EDIT!!!
package libconfd
import (
"text/template"
)
func init() {
_TemplateFunc_initFuncMap = func(p *TemplateFunc) {
p.FuncMap = template.FuncMap{
"add": p.Add,
"atoi": p.Atoi,
"base": p.Base,
"base64Decode": p.Base64Decode,
"base64Encode": p.Base64Encode,
"cget": p.Cget,
"cgets": p.Cgets,
"cgetv": p.Cgetv,
"cgetvs": p.Cgetvs,
"contains": p.Contains,
"datetime": p.Datetime,
"dir": p.Dir,
"div": p.Div,
"exists": p.Exists,
"fileExists": p.FileExists,
"get": p.Get,
"getenv": p.Getenv,
"gets": p.Gets,
"getv": p.Getv,
"getvs": p.Getvs,
"join": p.Join,
"json": p.Json,
"jsonArray": p.JsonArray,
"lookupIP": p.LookupIP,
"lookupSRV": p.LookupSRV,
"ls": p.Ls,
"lsdir": p.Lsdir,
"map": p.Map,
"mod": p.Mod,
"mul": p.Mul,
"parseBool": p.ParseBool,
"replace": p.Replace,
"reverse": p.Reverse,
"seq": p.Seq,
"sortByLength": p.SortByLength,
"sortKVByLength": p.SortKVByLength,
"split": p.Split,
"sub": p.Sub,
"toLower": p.ToLower,
"toUpper": p.ToUpper,
"trimSuffix": p.TrimSuffix,
}
}
}