12 lines
204 B
Go
12 lines
204 B
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/chaitin/panda-wiki/domain"
|
|
)
|
|
|
|
type APITokenRepository interface {
|
|
GetByTokenWithCache(ctx context.Context, token string) (*domain.APIToken, error)
|
|
}
|