mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2025-01-09 18:00:56 +00:00
7 lines
129 B
Go
7 lines
129 B
Go
package blob
|
|
|
|
type Storage interface {
|
|
Write(path string, content []byte)
|
|
Read(path string) []byte
|
|
Exists(path string) bool
|
|
}
|