Files
2025-08-26 20:58:39 +10:00

20 lines
468 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package db
import (
"context"
)
type Querier interface {
CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error)
DeleteAuthor(ctx context.Context, id int64) error
GetAuthor(ctx context.Context, id int64) (Author, error)
ListAuthors(ctx context.Context) ([]Author, error)
UpdateAuthor(ctx context.Context, arg UpdateAuthorParams) error
}
var _ Querier = (*Queries)(nil)