mirror of
https://github.com/go-gitea/gitea.git
synced 2024-09-01 14:56:30 +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
|
|
}
|