mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-24 18:36:19 +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
|
|
}
|