Writer is a function type that writes query results to a writer.
func(w io.Writer, result *v1pb.QueryResult) error
| 17 | |
| 18 | // Writer is a function type that writes query results to a writer. |
| 19 | type Writer func(w io.Writer, result *v1pb.QueryResult) error |
| 20 | |
| 21 | // exportToBytes is a helper function that exports to a byte slice using a writer function. |
| 22 | func exportToBytes(result *v1pb.QueryResult, writerFunc Writer) ([]byte, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected