12 lines
161 B
Go
12 lines
161 B
Go
package storage
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// ObjectInStorage represents the object instance in the storage
|
|
type ObjectInStorage interface {
|
|
io.ReadCloser
|
|
io.Seeker
|
|
}
|