mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-01 07:35:58 +08:00
9 lines
217 B
Go
9 lines
217 B
Go
|
|
package controller
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
type AuthInterface interface {
|
||
|
|
GetTokens(ctx context.Context, userID, platform string) (map[string]int, error)
|
||
|
|
DeleteToken(ctx context.Context, userID, platform string) error
|
||
|
|
}
|