mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
12 lines
135 B
Go
12 lines
135 B
Go
//go:build go1.12
|
|
// +build go1.12
|
|
|
|
package bluemonday
|
|
|
|
import "io"
|
|
|
|
type stringWriterWriter interface {
|
|
io.Writer
|
|
io.StringWriter
|
|
}
|