1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-12-23 22:11:10 +02:00
Files
imgproxy/xmlparser/token_writer.go
2025-12-09 23:50:04 +06:00

11 lines
181 B
Go

package xmlparser
import "io"
// TokenWriter defines an interface with methods used to write XML tokens.
type TokenWriter interface {
io.Writer
io.ByteWriter
io.StringWriter
}