Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface { Create(ctx context.Context, token *models.Token) (*models.Token, error) GetByID(ctx context.Context, id uint) (*models.Token, error) GetByCode(ctx context.Context, code string) (*models.Token, error) UpdateByID(ctx context.Context, id uint, token *models.Token) error DeleteByID(ctx context.Context, id uint) error DeleteByCode(ctx context.Context, code string) error DeleteByClientID(ctx context.Context, clientID string) error }
Click to show internal directories.
Click to hide internal directories.