usermngmt/db.go

13 lines
252 B
Go
Raw Normal View History

2021-11-08 08:34:20 +00:00
package usermngmt
import (
"fmt"
"go.mongodb.org/mongo-driver/mongo"
)
2021-11-10 02:54:49 +00:00
// getCollectionName ...
func (s Service) getCollectionName(tablePrefix, table string) *mongo.Collection {
return s.db.Collection(fmt.Sprintf("%s-%s", tablePrefix, table))
2021-11-08 08:34:20 +00:00
}