mirror of
https://github.com/silicoflare/envy.git
synced 2026-05-26 11:49:52 +05:30
14 lines
210 B
Go
14 lines
210 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/charmbracelet/lipgloss"
|
|
)
|
|
|
|
var ErrStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("#F00"))
|
|
|
|
func ErrPrint(data string) {
|
|
fmt.Println(ErrStyle.Render(data))
|
|
}
|