mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2024-11-13 00:31:24 +00:00
8 lines
129 B
Go
8 lines
129 B
Go
package blob
|
|
|
|
type Storage interface {
|
|
Write(path string, content []byte)
|
|
Read(path string) []byte
|
|
Exists(path string) bool
|
|
}
|