tiktok-dl/utils/checkErr/checkErr.go

13 lines
138 B
Go
Raw Normal View History

package utils
import (
"log"
)
// CheckErr - Checks if error and log
func CheckErr(err error) {
if err != nil {
log.Fatal(err)
}
}