Remove io.StringWriter

This commit is contained in:
Vladimir Mihailenco 2020-06-12 10:09:32 +03:00
parent 888328aef2
commit 789ee0484f
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ import (
type writer interface { type writer interface {
io.Writer io.Writer
io.ByteWriter io.ByteWriter
io.StringWriter //io.StringWriter
WriteString(s string) (n int, err error)
} }
type Writer struct { type Writer struct {