jira-bot/pkg/utils/exit.go
Andrey Belvedersky f3175b8ce9 add config
2021-06-06 03:46:11 +03:00

14 lines
132 B
Go

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