Versions in this module Expand all Collapse all v0 v0.0.28 Jul 26, 2022 Changes in this version type Controller + func (x *Controller) In(r *route.RouterGroup) type Service + func (x *Service) Actived(ctx context.Context, id primitive.ObjectID) (data map[string]interface{}, err error) v0.0.5 Aug 26, 2022 Changes in this version + var Provides = wire.NewSet(wire.Struct(new(Controller), "*"), wire.Struct(new(Service), "*")) + type Controller struct + UsersService *Service + type Service struct + Db *mongo.Database + DepartmentsService *departments.Service + Redis *redis.Client + RolesService *roles.Service + Values *common.Values + func (x *Service) FindByIdentity(ctx context.Context, identity string) (data model.User, err error) + func (x *Service) GetActived(ctx context.Context, id string) (data model.User, err error) + func (x *Service) UpdateOneById(ctx context.Context, id primitive.ObjectID, update bson.M) (*mongo.UpdateResult, error)