Files
spend-sparrow/db/error.go
Tim Wundenberg bd18453a6e
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m19s
feat(account): #49 refactor error handling
2025-05-08 21:45:53 +02:00

11 lines
154 B
Go

package db
import (
"errors"
)
var (
ErrNotFound = errors.New("the value does not exist")
ErrAlreadyExists = errors.New("row already exists")
)