// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.17.2 package dbr import ( "context" ) type Querier interface { DecrTagsById(ctx context.Context, arg *DecrTagsByIdParams) error HotTags(ctx context.Context, arg *HotTagsParams) ([]*HotTagsRow, error) IncrTags(ctx context.Context, arg *IncrTagsParams) ([]*IncrTagsRow, error) InsertTags(ctx context.Context, arg *InsertTagsParams) (int64, error) NewestTags(ctx context.Context, arg *NewestTagsParams) ([]*NewestTagsRow, error) TagsByKeywordA(ctx context.Context) ([]*TagsByKeywordARow, error) TagsByKeywordB(ctx context.Context, tag string) ([]*TagsByKeywordBRow, error) } var _ Querier = (*Queries)(nil)