Commit 44e3bf1d authored by Tit Petric's avatar Tit Petric
Browse files

del(crm): unused error.go

package repository
type (
repositoryError string
)
const (
ErrDatabaseError = repositoryError("DatabaseError")
)
func (e repositoryError) Error() string {
return "repository." + string(e)
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment