| 7 | ) |
| 8 | |
| 9 | type Querier interface { |
| 10 | CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) |
| 11 | DeleteAuthor(ctx context.Context, id int64) error |
| 12 | GetAuthor(ctx context.Context, id int64) (Author, error) |
| 13 | ListAuthors(ctx context.Context) ([]Author, error) |
| 14 | } |
| 15 | |
| 16 | var _ Querier = (*Queries)(nil) |