blob: ecdaa92cac348671df1fc4d2ff411dcae92b484d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//go:build go1.1 && !go1.12
// +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)
}
|