How to create a Reader from a string in Go?
Posted on In QAIn Go, how to create a Reader from a string? Many APIs use a Reader as its input.
In Go, the
strings.NewReader(s)
library function creates a Reader from a string.
Check the doc at: https://golang.org/pkg/strings/#NewReader