tiktok-dl/utils/checkErr/checkErr.go
2020-03-22 02:10:24 +02:00

13 lines
138 B
Go

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