mirror of
https://github.com/owncloud/ocis
synced 2026-05-09 16:42:01 +02:00
15 lines
139 B
Go
15 lines
139 B
Go
package http
|
|
|
|
import (
|
|
"bytes"
|
|
)
|
|
|
|
type buffer struct {
|
|
*bytes.Buffer
|
|
}
|
|
|
|
func (b *buffer) Close() error {
|
|
b.Buffer.Reset()
|
|
return nil
|
|
}
|