mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2024-11-10 15:21:28 +00:00
6 lines
77 B
Go
6 lines
77 B
Go
|
package blob
|
||
|
|
||
|
type Storage interface {
|
||
|
Write(path string, content []byte)
|
||
|
}
|