| package daoimport "errors"//ErrNoDocument the requested document was not found in the backendvar ErrNoDocument = errors.New("Document not found")//ErrUniqueIndexError there is a unique index violationvar ErrUniqueIndexError = errors.New("Unique index error")//ErrNotImplemented the desired feature/function/method is not implementedvar ErrNotImplemented = errors.New("Not implemented")//ErrUnknownError i don't know what this error is aboutvar ErrUnknownError = errors.New("Unknown server error")
 |