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.
|
package server |
|
|
|
import ( |
|
"go-common/app/service/main/identify-game/model" |
|
"go-common/library/net/rpc/context" |
|
) |
|
|
|
// DelCache del token cache. |
|
func (r *RPC) DelCache(c context.Context, arg *model.CleanCacheArgs, res *struct{}) (err error) { |
|
err = r.s.DelCache(c, arg.Token) |
|
return |
|
}
|
|
|