utils/cli/err/err.go

14 lines
120 B
Go
Raw Permalink Normal View History

package err
2024-10-23 15:56:56 -05:00
import (
"fmt"
"os"
)
func HandleErr(err error) {
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}