gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

stringwriterwriter_go1.12.go (135B)


      1 //go:build go1.12
      2 // +build go1.12
      3 
      4 package bluemonday
      5 
      6 import "io"
      7 
      8 type stringWriterWriter interface {
      9 	io.Writer
     10 	io.StringWriter
     11 }