dns-tools/internal/check.go

10 lines
94 B
Go

package check
import "log"
func Check(err error) {
if err != nil {
log.Fatalln(err)
}
}