diff options
Diffstat (limited to 'internal/models/errors.go')
-rw-r--r-- | internal/models/errors.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/models/errors.go b/internal/models/errors.go new file mode 100644 index 0000000..a70c7dc --- /dev/null +++ b/internal/models/errors.go @@ -0,0 +1,7 @@ +package models + +import ( + "errors" +) + +var ErrNoRecord = errors.New("models: no matching record found") |