jx/internal/ext/stringreader.go

17 lines
262 B
Go
Raw Permalink Normal View History

2024-10-02 19:22:47 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package ext
import (
"io"
"strings"
)
func NewStringReader(value string) io.Reader {
return stringReader{strings.NewReader(value)}
}
type stringReader struct {
io.Reader
}