9 lines
87 B
Go
9 lines
87 B
Go
package utils
|
|
|
|
import "io"
|
|
|
|
type SizeReadCloser struct {
|
|
io.ReadCloser
|
|
Size uint64
|
|
}
|