// // error_helper.go // Copyright (C) 2022 tiglog // // Distributed under terms of the MIT license. // package helper func CheckErr(err error) { if err != nil { panic(err) } }