Post-Migrator/utilities/error-utilities.go

12 lines
116 B
Go
Raw Permalink Normal View History

2024-05-07 22:03:15 +00:00
package utilities
import (
"fmt"
)
func CheckError(err error) {
if err != nil {
fmt.Println(err.Error())
}
}