15 lines
142 B
Go
15 lines
142 B
Go
package util
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func Check(e error, msg string) {
|
|
if e != nil {
|
|
fmt.Println(msg)
|
|
fmt.Println(e)
|
|
os.Exit(1)
|
|
}
|
|
}
|