Files
k3s/pkg/agent/templates/templates_linux.go
2025-02-05 11:34:05 -08:00

15 lines
205 B
Go

//go:build linux
package templates
import (
"text/template"
)
// Linux config templates do not need fixups
var templateFuncs = template.FuncMap{
"deschemify": func(s string) string {
return s
},
}