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
2021-02-04 05:16:13 -05:00

8 lines
95 B
Go

package db
import "errors"
var (
ErrUserAlreadyExists = errors.New("user already exists")
)