Eric Bower
·
09 Nov 24
storage.go
1package storage
2
3import (
4 "io"
5
6 sst "github.com/picosh/pobj/storage"
7)
8
9type StorageServe interface {
10 sst.ObjectStorage
11 ServeObject(bucket sst.Bucket, fpath string, opts *ImgProcessOpts) (io.ReadCloser, string, error)
12}