TemplateFuncs lists common template helper functions.
()
| 33 | |
| 34 | // TemplateFuncs lists common template helper functions. |
| 35 | func TemplateFuncs() map[string]any { |
| 36 | return map[string]any{ |
| 37 | "commandLine": CommandLine, |
| 38 | "comment": Comment, |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | // CommandLine return the command used to run this process. |
| 43 | func CommandLine() string { |