mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
682 B
22 lines
682 B
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.19.1
|
|
|
|
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)
|