project structure

This commit is contained in:
Fran Jurmanović
2021-05-02 20:35:00 +02:00
parent 9a272d47c4
commit 3a5138eb83
10 changed files with 292 additions and 0 deletions

9
pkg/utl/common/common.go Normal file
View File

@@ -0,0 +1,9 @@
package common
import "log"
func CheckError(err error) {
if err != nil {
log.Fatalf("Unable to execute the query. %v", err)
}
}