mirror of
https://github.com/go-gitea/gitea
synced 2025-03-01 08:14:19 +00: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
|
|
}
|