package webpconverter import "bytes" type readSeekCloser struct { *bytes.Reader } func (r readSeekCloser) Close() error { return nil }