Files
ezbookkeeping/pkg/storage/object_in_storage.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
}