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
456 B
13 lines
456 B
6 months ago
|
package cache
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type TokenModel interface {
|
||
|
AddTokenFlag(ctx context.Context, userID string, platformID int, token string, flag int) error
|
||
|
GetTokensWithoutError(ctx context.Context, userID string, platformID int) (map[string]int, error)
|
||
|
SetTokenMapByUidPid(ctx context.Context, userID string, platformID int, m map[string]int) error
|
||
|
DeleteTokenByUidPid(ctx context.Context, userID string, platformID int, fields []string) error
|
||
|
}
|