You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package query
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Updater is a filter to update the data
|
|
|
|
type Updater interface {
|
|
|
|
Update() (update primitive.A)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update is a simple implementations of the Updater filter
|
|
|
|
type Update primitive.M
|
|
|
|
|
|
|
|
var _ Updater = &Update{}
|
|
|
|
|
|
|
|
// Update returns an update command
|
|
|
|
func (u Update) Update() (update primitive.A) {
|
|
|
|
return primitive.A{primitive.M(u)}
|
|
|
|
}
|