mirror of
https://github.com/arnaucube/padArchiver.git
synced 2026-02-06 19:26:48 +01:00
10 lines
118 B
Go
10 lines
118 B
Go
package main
|
|
|
|
import "github.com/fatih/color"
|
|
|
|
func check(err error) {
|
|
if err != nil {
|
|
color.Red(err.Error())
|
|
}
|
|
}
|