-
Volker Schukai authoredVolker Schukai authored
error.go 116 B
package main
import (
"fmt"
"os"
)
func checkError(e error) {
if e != nil {
fmt.Println(e)
os.Exit(1)
}
}
package main
import (
"fmt"
"os"
)
func checkError(e error) {
if e != nil {
fmt.Println(e)
os.Exit(1)
}
}