mirror of
https://github.com/pikami/tiktok-dl.git
synced 2024-11-25 17:25:42 +00:00
13 lines
138 B
Go
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)
|
|
}
|
|
}
|