mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-16 02:27:01 +08:00
11 lines
182 B
Go
11 lines
182 B
Go
package mgo
|
|
|
|
import (
|
|
"github.com/openimsdk/tools/errs"
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
)
|
|
|
|
func IsNotFound(err error) bool {
|
|
return errs.Unwrap(err) == mongo.ErrNoDocuments
|
|
}
|