feat(chore): Add tests and use "any" instead of "inteface"

This commit is contained in:
2025-06-04 15:17:26 +02:00
parent a8341a9b44
commit b143f743ef
6 changed files with 83 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ const (
)
// Warn prints a warning message
func Warn(msg ...interface{}) {
func Warn(msg ...any) {
orange := "\033[38;5;214m"
reset := "\033[0m"
fmt.Print(IconWarning, orange, " ")