mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 08:44:25 +08:00
supports local file system object storage and use it as the default avatar provider
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package storage
|
||||
|
||||
import (
|
||||
"io"
|
||||
)
|
||||
|
||||
// ObjectInStorage represents the object instance in the storage
|
||||
type ObjectInStorage interface {
|
||||
io.ReadCloser
|
||||
io.Seeker
|
||||
}
|
||||
Reference in New Issue
Block a user