mirror of
https://github.com/go-gitea/gitea
synced 2024-11-09 19:54:25 +00:00
9 lines
92 B
Go
9 lines
92 B
Go
|
package iohelper
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type ByteMultiReader interface {
|
||
|
io.ByteReader
|
||
|
io.Reader
|
||
|
}
|