mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
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
|
|
}
|