// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.30.0 package db import ( "context" "github.com/jackc/pgx/v5/pgtype" ) type Querier interface { CreateDelivery(ctx context.Context, arg CreateDeliveryParams) (Delivery, error) DeleteDelivery(ctx context.Context, id pgtype.UUID) error GetDeliveriesByDate(ctx context.Context, date pgtype.Date) ([]Delivery, error) GetDeliveryByID(ctx context.Context, id pgtype.UUID) (Delivery, error) GetDeliveryCount(ctx context.Context) ([]GetDeliveryCountRow, error) UpdateDelivery(ctx context.Context, arg UpdateDeliveryParams) error } var _ Querier = (*Queries)(nil)