(ctx context.Context, inputs []srcfiles.Input)
| 122 | } |
| 123 | |
| 124 | func (r *remote) Query(ctx context.Context, inputs []srcfiles.Input) (vio.Scanner, error) { |
| 125 | res, err := r.conn.Query(ctx, inputs) |
| 126 | if err != nil { |
| 127 | return nil, err |
| 128 | } |
| 129 | return queryio.NewScanner(ctx, res.Body) |
| 130 | } |
| 131 | |
| 132 | func (r *remote) Delete(ctx context.Context, poolID ksuid.KSUID, branchName string, tags []ksuid.KSUID, commit api.CommitMessage) (ksuid.KSUID, error) { |
| 133 | res, err := r.conn.Delete(ctx, poolID, branchName, tags, commit) |
nothing calls this directly
no test coverage detected