mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
24 lines
855 B
Go
24 lines
855 B
Go
// +build !windows
|
|
|
|
package promptui
|
|
|
|
// These are the default icons used by promptui for select and prompts. These should not be overridden and instead
|
|
// customized through the use of custom templates
|
|
var (
|
|
// IconInitial is the icon used when starting in prompt mode and the icon next to the label when
|
|
// starting in select mode.
|
|
IconInitial = Styler(FGBlue)("?")
|
|
|
|
// IconGood is the icon used when a good answer is entered in prompt mode.
|
|
IconGood = Styler(FGGreen)("✔")
|
|
|
|
// IconWarn is the icon used when a good, but potentially invalid answer is entered in prompt mode.
|
|
IconWarn = Styler(FGYellow)("⚠")
|
|
|
|
// IconBad is the icon used when a bad answer is entered in prompt mode.
|
|
IconBad = Styler(FGRed)("✗")
|
|
|
|
// IconSelect is the icon used to identify the currently selected item in select mode.
|
|
IconSelect = Styler(FGBold)("▸")
|
|
)
|