Closed
Description
Currently the generated values are:
func (q *Queries) BuffById(ctx context.Context, id int64) (Buff, error) {
it would be nice if there's option to set these values:
emit_context: false
emit_pointer: true
so it would generate something like this:
func (q *Queries) BuffById(id int64) (*Buff, error) {