srpmproc/internal/blob/blob.go

8 lines
129 B
Go
Raw Normal View History

package blob
type Storage interface {
Write(path string, content []byte)
Read(path string) []byte
Exists(path string) bool
}