package employee_wi import ( "go.mongodb.org/mongo-driver/mongo" ) func NewRepo(collection *mongo.Collection) *Repo { return &Repo{collection: collection} } type Repo struct { collection *mongo.Collection }