mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 09:44:26 +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)
|
|
}
|