summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/microcosm-cc/bluemonday/stringwriterwriter_ltgo1.12.go
blob: 9bc67479826fbe278d9e6c12310a9582dbd25f1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// +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)
}