slask
Some checks failed
Build and Publish / BuildAndDeploy (push) Failing after 8s

This commit is contained in:
matst80
2025-05-15 19:28:34 +02:00
commit 19b7299966
8 changed files with 513 additions and 0 deletions

12
pkg/storage/storage.go Normal file
View File

@@ -0,0 +1,12 @@
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)
}