converge/pkg/server/ui/constants.go

22 lines
315 B
Go

package ui
type Shell string
const (
BASH Shell = "bash"
CMD Shell = "cmd"
POWERSHELL Shell = "powershell"
)
type DownloadMethod string
const (
CURL DownloadMethod = "curl"
WGET DownloadMethod = "wget"
)
var DOWNLOAD_COMMAND = map[DownloadMethod]string{
CURL: "curl -o",
WGET: "wget -O",
}