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/query/errors.go
2021-01-11 23:48:32 -05:00

8 lines
101 B
Go

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