converge/pkg/server/templates/constants.go
Erik Brakkee 9d1c6d6616 prometheus support step 1
updates to documentation.
2024-08-07 20:50:17 +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",
}