auth/internal/token/usecase.go

10 lines
114 B
Go

package token
import (
"context"
)
type UseCase interface {
Revoke(ctx context.Context, token string) error
}