mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
12 lines
173 B
Go
12 lines
173 B
Go
package tui
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func PrintWarning(msg string) {
|
|
styledMsg := BoldYellow.Render(fmt.Sprintf("WARNING: %s", msg))
|
|
fmt.Fprintln(os.Stderr, styledMsg)
|
|
}
|