mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2025-01-10 02:10:55 +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
|
|
}
|