Files
go-persist/pkg/storage/storage.go
matst80 19b7299966
Some checks failed
Build and Publish / BuildAndDeploy (push) Failing after 8s
slask
2025-05-15 19:28:34 +02:00

13 lines
199 B
Go

package storage
import (
"io"
)
type Storage interface {
Get(key string) (io.Reader, error)
Put(key string, data []byte) error
Delete(key string) error
List(prefix string) ([]string, error)
}