mirror of
https://github.com/anchore/grype
synced 2024-11-10 06:34:13 +00:00
9050883715
* feat(outputs): allow to set multiple outputs (#648) Signed-off-by: Olivier Boudet <o.boudet@gmail.com> Signed-off-by: Olivier Boudet <olivier.boudet@cooperl.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * feat(outputs): allow to set multiple outputs (#648) review Signed-off-by: Olivier Boudet <olivier.boudet@cooperl.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * use syft format writter pattern and de-emphasize presenter package Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Olivier Boudet <o.boudet@gmail.com> Signed-off-by: Olivier Boudet <olivier.boudet@cooperl.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
21 lines
274 B
Go
21 lines
274 B
Go
package stringutil
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
DefaultColor Color = iota + 30
|
|
Red
|
|
Green
|
|
Yellow
|
|
Blue
|
|
Magenta
|
|
Cyan
|
|
White
|
|
)
|
|
|
|
type Color uint8
|
|
|
|
// TODO: not cross platform (windows...)
|
|
func (c Color) Format(s string) string {
|
|
return fmt.Sprintf("\x1b[%dm%s\x1b[0m", c, s)
|
|
}
|