You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
13 lines
301 B
package service |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/interface/main/mcn/model/mcnmodel" |
|
) |
|
|
|
//CmdReloadRankCache reload cache |
|
func (s *Service) CmdReloadRankCache(c context.Context, arg *mcnmodel.CmdReloadRank) (res *mcnmodel.CommonReply, err error) { |
|
err = s.mcndao.ReloadRank(arg.SignID) |
|
return |
|
}
|
|
|