Versions in this module Expand all Collapse all v1 v1.0.1 Aug 10, 2022 Changes in this version + var ProviderSet = wire.NewSet(NewDictUsecase) + type Dict struct + Actor string + Guide string + Lawyer string + Woker string + type DictRepo interface + Get func(context.Context) (*Dict, error) + type DictUsecase struct + func NewDictUsecase(repo DictRepo, logger log.Logger) *DictUsecase + func (uc *DictUsecase) GetDict(ctx context.Context) (*pb.DictResponse, error)