8 lines
147 B
Go
8 lines
147 B
Go
|
package interfaces
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type StorageService interface {
|
||
|
PutFile(file io.ReadSeeker, bucket string, generateProof bool) ([]byte, error)
|
||
|
}
|