mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
16 lines
224 B
Go
16 lines
224 B
Go
//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)
|
|
}
|