This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
summer-utils/utils/check.go

10 lines
111 B
Go

package utils
import "log"
func Check(msg string, err error) {
if err != nil {
log.Fatalln(msg, err)
}
}