mongo-example/mongo/collection.go

10 lines
259 B
Go
Raw Normal View History

2023-01-16 07:22:35 +00:00
package mongo
import "go.mongodb.org/mongo-driver/mongo"
// Collection 获取集合
func Collection(client *mongo.Client, cname string) (*mongo.Collection, error) {
collection := client.Database(config.Database).Collection(cname)
return collection, nil
}