mirror of
https://github.com/go-gitea/gitea
synced 2025-02-15 06:47:01 +01:00
11 lines
117 B
Go
Vendored
11 lines
117 B
Go
Vendored
// +build go1.12
|
|
|
|
package bluemonday
|
|
|
|
import "io"
|
|
|
|
type stringWriterWriter interface {
|
|
io.Writer
|
|
io.StringWriter
|
|
}
|