package utils import ( "log" "os" "time" ) func Exit(err error) { log.Println(err) time.Sleep(time.Second * 2) os.Exit(1) }