This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/internal/db/errors.go

8 lines
98 B
Go
Raw Normal View History

2021-01-10 00:44:02 +00:00
package db
import "errors"
var (
ErrUserAlreadyExists = errors.New("user already exists")
)