mirror of
https://github.com/go-gitea/gitea
synced 2025-01-28 02:24:27 +00:00
d98694e6ca
* Update bluemonday to v1.0.15 (#16379) * Fix TESTS
15 lines
196 B
Go
Vendored
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)
|
|
}
|