mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
13 lines
286 B
Go
13 lines
286 B
Go
|
|
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
|
||
|
|
}
|