CrazyMax 67dbde6970
Revert "vendor: github.com/docker/cli/v28.0.0-rc.1"
This reverts commit 7216086b8cf9eaabcd63ce681ebf59974645464d.

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2025-02-11 18:14:49 +01:00

19 lines
290 B
Go

package hooks
import (
"fmt"
"io"
"github.com/morikuni/aec"
)
func PrintNextSteps(out io.Writer, messages []string) {
if len(messages) == 0 {
return
}
fmt.Fprintln(out, aec.Bold.Apply("\nWhat's next:"))
for _, n := range messages {
_, _ = fmt.Fprintf(out, " %s\n", n)
}
}