portal/interfaces/storage.go

11 lines
230 B
Go
Raw Normal View History

2024-01-15 04:52:54 +00:00
package interfaces
import "io"
type StorageService interface {
Init()
2024-01-15 04:52:54 +00:00
PutFile(file io.ReadSeeker, bucket string, generateProof bool) ([]byte, error)
FileExists(hash []byte) bool
2024-01-16 05:48:06 +00:00
GetHash(file io.ReadSeeker) ([]byte, error)
2024-01-15 04:52:54 +00:00
}