gtsocial-umbx

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

stringwriterwriter_ltgo1.12.go (224B)


      1 //go:build go1.1 && !go1.12
      2 // +build go1.1,!go1.12
      3 
      4 package bluemonday
      5 
      6 import "io"
      7 
      8 type stringWriterWriter interface {
      9 	io.Writer
     10 	StringWriter
     11 }
     12 
     13 type StringWriter interface {
     14 	WriteString(s string) (n int, err error)
     15 }