initial commit example

This commit is contained in:
2023-03-29 18:54:45 -05:00
commit f1033c67ac
18 changed files with 4433 additions and 0 deletions

8
model/error.go Normal file
View File

@@ -0,0 +1,8 @@
package model
import "errors"
var (
// ErrNoRow example
ErrNoRow = errors.New("no rows in result set")
)