converge/pkg/server/templates/constants.go
Erik Brakkee 135fd081d8 prometheus support step 1
updates to documentation.
2024-09-08 11:16:49 +02:00

14 lines
211 B
Go

package templates
const BASH = "*.sh"
const CMD = "cmd"
const POWERSHELL = "powershell"
const CURL = "curl"
const WGET = "wget"
var DOWNLOAD_COMMAND = map[string]string{
CURL: "curl -o",
WGET: "wget -O",
}