Files
inventory-plus-plus/internal/consts/errors.go
T
2026-01-30 00:55:17 -07:00

10 lines
165 B
Go

package consts
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrConflict = errors.New("conflict")
ErrBadRequest = errors.New("bad request")
)