Versions in this module Expand all Collapse all v0 v0.0.28 Jul 26, 2022 Changes in this version + var Provides = wire.NewSet(wire.Struct(new(Controller), "*"), wire.Struct(new(Service), "*")) + type Controller struct + SessionsService *Service + func (x *Controller) In(r *route.RouterGroup) + type Service struct + Redis *redis.Client + Values *common.Values + func (x *Service) Delete(ctx context.Context, name string) + func (x *Service) Key(name string) string + func (x *Service) Update(ctx context.Context, name string, ttl time.Duration) (err error) + func (x *Service) Verify(ctx context.Context, name string, n int64) (result bool, err error)