mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-12-23 22:11:10 +02:00
11 lines
181 B
Go
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
|
|
}
|