1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-04 17:15:49 +00:00
gitea/vendor/github.com/microcosm-cc/bluemonday/stringwriterwriter_ltgo1.12.go
6543 d98694e6ca
Update bluemonday to v1.0.15 (#16379) (#16380)
* Update bluemonday to v1.0.15 (#16379)

* Fix TESTS
2021-07-09 02:47:27 +02:00

15 lines
196 B
Go
Vendored

// +build go1.1,!go1.12
package bluemonday
import "io"
type stringWriterWriter interface {
io.Writer
StringWriter
}
type StringWriter interface {
WriteString(s string) (n int, err error)
}