This commit is contained in:
withchao 2023-11-17 16:43:45 +08:00
parent 3b6d91f0f1
commit c0357a066b

View File

@ -12,7 +12,7 @@ import (
func NewGroupMongo(db *mongo.Database) (relation.GroupModelInterface, error) {
return &GroupMgo{
coll: db.Collection("user"),
coll: db.Collection("group"),
}, nil
}