// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.31.1 package queries import ( "context" ) type Querier interface { CountWords(ctx context.Context, arg CountWordsParams) (int64, error) CreateCategory(ctx context.Context, arg CreateCategoryParams) (Category, error) CreateWord(ctx context.Context, arg CreateWordParams) (Word, error) DeleteCategory(ctx context.Context, id int32) error DeleteWord(ctx context.Context, id int32) error GetCategory(ctx context.Context, id int32) (Category, error) GetWord(ctx context.Context, id int32) (Word, error) ListCategories(ctx context.Context) ([]Category, error) ListWords(ctx context.Context, arg ListWordsParams) ([]Word, error) UpdateCategory(ctx context.Context, arg UpdateCategoryParams) (Category, error) UpdateWord(ctx context.Context, arg UpdateWordParams) (Word, error) } var _ Querier = (*Queries)(nil)